for循环语句、ord()函数的应用 ''' 在终端中获取一个字符串,打印每个字符的编码值 ''' string = input('请输入任意内容:') for i in string: print(ord(i)) 来源:CSDN作者:Rookie_Max链接:https://blog.csdn.net/Rookie_Max/article/details/104042539 标签 python for循环 字符编码 python函数 for循环 string python