0

私はプログラミングが初めてで、基本的な数学ゲームを作ることにしました。print ("what is your name") name = input () print ("hello " + name + " I am steve and this is my math test. Are you ready? Y/N") answer_1 = input () answer_1 = 整数 (回答_1)

if answer_1 ==Y:
    print ("Good then lets get started")

else:
    print ("well you have started now so to late lets go")

私はそれをテストしに行きました、そして私がするたびに私はこれを手に入れます.

what is your name
Callum
hello Callum i am steve and this is my maths test. Are you ready? Y/N
Y
Traceback (most recent call last):
  File "C:\Users\callum\Documents\programming\maths test.py", line 6, in <module>
answer_1 = int (answer_1)
ValueError: invalid literal for int() with base 10: 'Y'
>>> 

誰が私が間違ったことを教えてもらえますか

4

4 に答える 4

0

この行を削除して、これを次のようanswer_1 = int (answer_1)
に変更if answer_1 == Y:しますif answer_1 == 'Y':

于 2013-09-14T16:59:31.463 に答える