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:42 编辑
ord 是获取字符的 unicode 码值的,你那个 ss.index(2) 不是字符串,用 str 转成字符串
而且 2 这个元素不在列表中,用 index 会报错
ss =
w = isdkz 发表于 2023-1-31 16:21
ord 是获取字符的 ascii 码值的,你那个 ss.index(2) 不是字符串,用 str 转成字符串
而且 2 这个元素不 ...
不一定是Ascii,中文也行 歌者文明清理员 发表于 2023-1-31 16:40
不一定是Ascii,中文也行
多谢大佬指正,我改了{:5_110:} isdkz 发表于 2023-1-31 16:21
ord 是获取字符的 unicode 码值的,你那个 ss.index(2) 不是字符串,用 str 转成字符串
而且 2 这个元素 ...
{:10_323:}
页:
[1]