Visual Studio代码[已关闭]

s5a0g9ez  于 2023-01-31  发布在  其他
关注(0)|答案(3)|浏览(175)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
昨天关门了。
Improve this question
我得到了所有这些额外的代码enter image description here

14ifxucb

14ifxucb1#

您没有在代码中声明变量。
试试这个,保存并运行它:

name = input('what is your name: ?')
print(name)
xuo3flqw

xuo3flqw2#

调用input()函数并不会自动创建一个名为input的单独变量,这似乎是您所期望的。
你必须把输入函数的结果赋给一个变量:

yourname = input('What is your name? ')
print(yourname)
nkhmeac6

nkhmeac63#

正如Blue Acronis所说,您必须将输入保存在变量中,或者您可以这样做:

print(input('What is your name?'))

相关问题