temp = 'abcdefghijk'for item in temp: print(item)# 打印 a b c d e f g h i j k for item in range(10): print(item)