Beginner python “None” issue

后端 未结 3 1906
说谎
说谎 2021-01-15 04:27

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

3条回答
  •  萌比男神i
    2021-01-15 05:03

    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

提交回复
热议问题