私はこれを理解していません、それは正しい単語の終わりに構文エラーがあると言います。
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ですが。