可以使用for循环遍历字符串的每个字符。示例如下:
string = "Hello World" for char in string: print(char)
输出结果为:
H e l l o W o r l d
你可以根据实际需求对每个字符进行处理,比如统计字符出现的次数、替换特定字符等。