for循环的基础语法
基础语法
for 临时变量 in 待处理数据集:
事务
示例:
代码:
name="cgone10" for i in name: print(i)
for循环是遍历循环,或者说是轮询循环,循环的次数只与被处理的数据集有关,理论上for循环不存在无限循环
练习:定义字符串name统计name中有几个字母a
name="adefuhidhanoa" count=0 for i in name: if i=='a': count+=1 print(f"{name}中一共有{count}个字母a")