标签:for 简洁 数字 字符串 col 如何 字符串类 nbsp for循环
一、for循环
1.1、什么是for循环
循环就是重复做某件事,for循环是python提供第二种循环机制。
1.2、为何要有for循环
理论上for循环能做的事情,while循环都可以做
之所以要有for循环,是因为for循环在循环取值(遍历取值)比while循环更简洁
1.3、如何用for循环
1.3.1、for基本使用之循环取值
# i=0
# while i < 3:
# print(l[i])
# i+=1
标签:for 简洁 数字 字符串 col 如何 字符串类 nbsp for循环
原文地址:https://www.cnblogs.com/jingpeng/p/12458670.html