I am new to python programming. I am using latest version of pyCharm and doing remote debugging of some code which is on raspberrypi. There is this code.
# Get the verifier code from the user. Do this however you
# want, as long as the user gives the application the code.
verifier = input('Verifier code: ')
Where I enter some string like 117-820-181 on the console window and in the veriifer variable it shows up as an int. on the next line the code breaks as it expects verifier to be string and not int. Any ideas why this is returning int instead of string ?