编码值是什么
第27讲作业 字符编码值? 本帖最后由 jackz007 于 2023-2-14 21:02 编辑运行一下这个代码,考察一下运行结果也许能明白点什么
s , d = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' , []
for c in s :
d . append(ord(c))
print("'%c' : %3d" % (c , ord(c)))
print('*' * 20)
for x in d : print("%3d : '%c'" % (x , chr(x))) 你说的是ASCII字符编码值?看这个https://fishc.com.cn/forum.php?mod=viewthread&tid=67427&highlight=ASCII
页:
[1]