s="张三李四王五赵柳还有我"# n=0# while n < len(s): #计数函数最大的好处能动态的计算字符串的额长度# print(s[n])# n=n+1for c in s: print(c)