所以我正在尝试使用raw_input
在输出中键入Goku后创建一个打印Hello Goku的代码。当我输入Goku时,它什么都不做(在Python IDLE GUI中)。
但在Python命令行中它说
File "<stdin>", line 1
print ("hello Goku")
^
IndentationError: unexpected indent
这是我的剧本:
x = raw_input('What is your name?')
if raw_input() == "Goku":
print ("hello Goku")
答案 0 :(得分:-1)
您需要在if语句中比较x。
raw_input()将用户输入存储到变量x。