每次处理一个字符 解决方法: 创建列表 thestring='abcdefg' thelist=list(thestring) print thelist 结果 ['a', 'b', 'c', 'd', 'e', 'f', 'g'] 使用for语句循环遍历 thestring='abcdefg' for c in thestring: print c 使用列表推导式 (注意这里使用ord表示将字符转为字符值,例如a转为97) thestring='abcdefg' results=map(ord…