lsr3355 发表于 2022-10-31 19:10:33

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:14:44

本帖最后由 tommyyu 于 2022-10-31 19:17 编辑

>>> a = input(‘:’)
SyntaxError: invalid character in identifier
>>>
你这个报错信息不太对{:10_277:}
引号是中文字符,需要修改成英文字符
修改完就没有问题了(我这边的 Python 运行正常)

你后面有没有 eval(a) 或者 exec(a) 这样的代码

zhangjinxuan 发表于 2022-10-31 19:15:06

没有用错啊?是不是引号的原因,可以截图吗{:10_277:}

jackz007 发表于 2022-10-31 19:17:08

      中文符号
a = input(‘:’)

zhangjinxuan 发表于 2022-10-31 19:20:00

jackz007 发表于 2022-10-31 19:17
中文符号
a = input(‘:’)

如果是中文符号也不会报错NameError啊{:10_277:}应该是SystaxError

tommyyu 发表于 2022-10-31 19:30:21

本帖最后由 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
>>>

zhangjinxuan 发表于 2022-10-31 19:41:46

tommyyu 发表于 2022-10-31 19:30
我模拟出来了一个和这个情况类似的

不,楼主不可能这样,不然他为什么要问呢?

zhangjinxuan 发表于 2022-10-31 19:42:16

tommyyu 发表于 2022-10-31 19:30
我模拟出来了一个和这个情况类似的

你不要这么钻吧{:10_277:}

tommyyu 发表于 2022-10-31 19:43:42

zhangjinxuan 发表于 2022-10-31 19:41
不,楼主不可能这样,不然他为什么要问呢?

我也不太清楚,但是他这个报错貌似只符合这个{:10_277:}

kevinde2022 发表于 2022-11-1 11:30:58

报错说是asd没有赋值

Twilight6 发表于 2022-11-2 13:43:03



代码拷的有问题吧,明显 语法错误会先报,而不是没找到变量的错误,重新拷上来看看

陈尚涵 发表于 2022-11-2 20:19:52

lz写成中文符号了
回帖奖励100个鱼币?这也太离谱了吧,10鱼币都算敲击富有了

zy8818 发表于 2022-11-2 20:32:35

a = input(':')   如果是input出错打英文的引号就可以了,兄弟你想表达的意思是什么能说清楚点吗?下面的asd表示没有看懂

秋鹿姚 发表于 2022-11-3 12:22:12

引号错了
页: [1]
查看完整版本: input是我用错了嘛?