155185 发表于 2023-1-31 16:18:34

python ord和index报错

ss =
w =

Traceback (most recent call last):
File "<pyshell#19>", line 1, in <module>
    w =
ValueError: 2 is not in list

w =

Traceback (most recent call last):
File "<pyshell#20>", line 1, in <module>
    w =
NameError: name 'a' is not defined
加in显示a 定义错误,不加又没有2这个元素{:10_243:}

isdkz 发表于 2023-1-31 16:21:27

本帖最后由 isdkz 于 2023-1-31 16:42 编辑

ord 是获取字符的 unicode 码值的,你那个 ss.index(2) 不是字符串,用 str 转成字符串

而且 2 这个元素不在列表中,用 index 会报错

ss =
w =

歌者文明清理员 发表于 2023-1-31 16:40:22

isdkz 发表于 2023-1-31 16:21
ord 是获取字符的 ascii 码值的,你那个 ss.index(2) 不是字符串,用 str 转成字符串

而且 2 这个元素不 ...

不一定是Ascii,中文也行

isdkz 发表于 2023-1-31 16:42:31

歌者文明清理员 发表于 2023-1-31 16:40
不一定是Ascii,中文也行

多谢大佬指正,我改了{:5_110:}

155185 发表于 2023-1-31 16:49:52

isdkz 发表于 2023-1-31 16:21
ord 是获取字符的 unicode 码值的,你那个 ss.index(2) 不是字符串,用 str 转成字符串

而且 2 这个元素 ...

{:10_323:}
页: [1]
查看完整版本: python ord和index报错