Company: Hp_3march
Difficulty: medium
Sakra is developing a new version of a password manager. Earlier, she was using some 3rd party password manager but once she figured out that we couldn't keep track of all passwords which has been set for the respective account. She decided to develop her version of the password manager and for that, she came up with the following design: class Password_manager: Data members: old_password: --> a list that holds all of the user's past passwords i.e. string. Methods: get_password: --> method that returns the current password. set_password: --> method that sets the user's password. is_correct: --> method that receives a string and returns a boolean True or False depending on whether the string is equal to the current password or not. Complete the following tasks Class Password_manager Data Members: old_password --> a list that holds all of the user's past passwords i.e. string. The last item on the list is the user's current password. Define Constructor: Initializes an empt