I am trying to call my method from my class by asking an input from user, and use the input for calling the method. i think my best try looks like this:
class Possibilities:
def change_password(self):
do_change_password()
def do_change_password():
<some code here>
call = input('what do you want to do?')
Possibilities.call() #here the error happens
Is there any solution for this?