怎么将python中的字符串(单个字)如✀g✀ 转化为ascii码啊?

2025-01-03 17:52:00
推荐回答(2个)
回答1:

a="abcd"
for i in a:
print ord(i),

回答2:

ord('g')