我不明白这一点,它说正确单词的末尾有语法错误。
x=int(raw_input("Number: ")) <--/error/
y=385
if x == y:
print("correct")
if x < y:
print("too low")
if x > y:
print("too high")
新错误:
Traceback (most recent call last):
File "prog.py", line 1, in <module>
x=int(raw_input("Number: "))
NameError: name 'raw_input' is not defined
虽然输入是 458。