I just started on python and since I started a new calculator project, pyCharm spits out none after everything. I\'m not sure what\'s causing this error, I would appreciate
Try removing the print statement in the input.
Instead of input(print("Would you like to continue, yes or no?"))
, Try input("Would you like to continue, yes or no?")
That is what i do