首页题库练习题目详情
Python程序设计单选题中等

在 Python 中,以下哪个语句可以遍历字符串 'Python' 的每个字符?

Afor ch in 'Python': print(ch)
Bfor ch in range(6): print(ch)
Cfor ch in list('Python'): print(ch)
Dfor ch in tuple('Python'): print(ch)