这是我第一次使用编程语言。我在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")
答案 0 :(得分:2)
你确定你使用的是python 3.x吗?
这看起来像是python2.x错误 - 在python 3下运行你的代码就像魅力一样。
如果用raw_input替换输入,它也可以与2.x一起使用