文件&#34; <string>&#34;,第1行,在<module> NameError:name&#39; san&#39;未定义</module> </string>

时间:2015-03-18 14:13:13

标签: python-3.x

这是我第一次使用编程语言。我在python中执行此代码,我收到了错误。请帮帮我。

 print("welcome")
name=input("\nHi, What's your name ?")
age=input("\nHow old are you?")
weight=int(input("How many pounds do you weight?"))



   print("Hello,",name, "you are ", age, " years old. And you weigh ",weight," pounds")

1 个答案:

答案 0 :(得分:2)

你确定你使用的是python 3.x吗?

这看起来像是python2.x错误 - 在python 3下运行你的代码就像魅力一样。

如果用raw_input替换输入,它也可以与2.x一起使用