-1

私はPythonで作業しており、大学での宿題のために働いていますが、これが原因で今は遅れています.if-elif-else関数を動作させることができません.. D:

これは私のコードであり、正しく動作させることができません。自慢できるものは何もありません。スコアが1000であっても。

score = raw_input("What is your score?")

if (score >= 0, score <= 999):
    print "Nothing to brag about."

elif (score >= 1000, score <= 9999):
    print "Good Score."

elif (score >= 10000):
    print "Very Impressive!"

else:
    print "That's not a legal score!"
4

4 に答える 4

-1

これを試して:

score = raw_input("What is your score?")

if ( int(score) <= 999 and int(score) >= 0):
    print "Nothing to brag about."

elif (int(score) >= 1000 and  int(score) <= 9999):
    print "Good Score."

elif (int(score) >= 10000):
    print "Very Impressive!"

else:
    print "That's not a legal score!"
于 2013-09-12T05:19:01.210 に答える