5 lines
76 B
Python
5 lines
76 B
Python
s = "Hello"
|
|
for c in s:
|
|
print(c, ord(c))
|
|
print(chr(65)) # 输出 A
|