Python for循环语句语法格式

视频版教程 Python3零基础7天入门实战视频教程

for 临时变量 in 待遍历的数据集:

​ 执行代码

案例1 通过for循环遍历字符串,打印挨个每个字符:

# 定义字符串website
website = "www.python222.com"

# 通过for循环遍历website字符串,拿到每个字符串字符
for w in website:
    print(w)

案例2 通过for循环遍历字符串,统计特定字符o,打印出个数

# 定义字符串website
website = "www.python222.com"

# 定义变量total,统计o字符个数
total = 0

# 通过for循环遍历website字符串,拿到每个字符串字符
for w in website:
    if w == 'o':
        total += 1
    print(w)
print(f"'o'的总个数是{total}个")

作业:通过for循环遍历,统计出 字符串 I’m a boy,my name is ‘Jack’ 的 ’ 的个数。

你可能感兴趣的:(Python,python)