以下是使用 Python 实现将字符串'python'中的各个字符以 ASCII 值的形式单独输出的代码:
s = 'python' i = 0 while i < len(s): print(ord(s[i])) i += 1