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
Remove print statements from input calls:
print
input
input(print("What's your first number?")) -> input("What's your first number?\n") or input("Your first number: ")
input(print("What's your first number?"))
input("What's your first number?\n")
input("Your first number: ")
That None is the return value of print function that is displayed by input function.
None