input是我用错了嘛?
>>> a = input(‘:’):asd
Traceback (most recent call last):
File "<pyshell#5>", line 1, in <module>
a = input(‘:’)
File "<string>", line 1, in <module>
NameError: name 'asd' is not defined 本帖最后由 tommyyu 于 2022-10-31 19:17 编辑
>>> a = input(‘:’)
SyntaxError: invalid character in identifier
>>>
你这个报错信息不太对{:10_277:}
引号是中文字符,需要修改成英文字符
修改完就没有问题了(我这边的 Python 运行正常)
你后面有没有 eval(a) 或者 exec(a) 这样的代码 没有用错啊?是不是引号的原因,可以截图吗{:10_277:} 中文符号
a = input(‘:’) jackz007 发表于 2022-10-31 19:17
中文符号
a = input(‘:’)
如果是中文符号也不会报错NameError啊{:10_277:}应该是SystaxError 本帖最后由 tommyyu 于 2022-10-31 19:32 编辑
zhangjinxuan 发表于 2022-10-31 19:20
如果是中文符号也不会报错NameError啊应该是SystaxError
我模拟出来了一个和这个情况类似的
>>> def outer(func):
def inner(x):
nonlocal func
return eval(func(x))
return inner
>>> input = outer(input)
>>> x = input(':')
:asd
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
x = input(':')
File "<pyshell#5>", line 4, in inner
return eval(func(x))
File "<string>", line 1, in <module>
NameError: name 'asd' is not defined
>>> tommyyu 发表于 2022-10-31 19:30
我模拟出来了一个和这个情况类似的
不,楼主不可能这样,不然他为什么要问呢? tommyyu 发表于 2022-10-31 19:30
我模拟出来了一个和这个情况类似的
你不要这么钻吧{:10_277:} zhangjinxuan 发表于 2022-10-31 19:41
不,楼主不可能这样,不然他为什么要问呢?
我也不太清楚,但是他这个报错貌似只符合这个{:10_277:} 报错说是asd没有赋值
代码拷的有问题吧,明显 语法错误会先报,而不是没找到变量的错误,重新拷上来看看
lz写成中文符号了
回帖奖励100个鱼币?这也太离谱了吧,10鱼币都算敲击富有了 a = input(':') 如果是input出错打英文的引号就可以了,兄弟你想表达的意思是什么能说清楚点吗?下面的asd表示没有看懂 引号错了
页:
[1]