Python,名称未定义

前端之家收集整理的这篇文章主要介绍了Python,名称未定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这个问题在这里已经有一个答案:> error in python d not defined. 3个
def main()

     name = input ("Please enter your name")

     print ("your name is",name)

在这个程序中(写入python IDLE)当我运行它,并输入我的名字我收到这个错误消息.

Traceback (most recent call last):

 File "C:\Users\********\Documents\PYTHON\hello world.py",line 66,in ?

   main()

  File "C:\Users\********\Documents\PYTHON\hello world.py",line 5,in main

    name = input ("Please enter your name")

  File "<string>",line 0,in ?

NameError: name 'Jim' is not defined

没有定义是什么意思?吉姆是输入,我如何定义输入,而可能是任何字母的混合?

解决方法

2.x中的input()将其输入解释为Python代码.请改用raw_input().并停止将3.x文档应用于2.x.
原文链接:https://www.f2er.com/python/186395.html

猜你在找的Python相关文章