在我们学习python的时候可能需要一个东西重复执行操作,有的可能需要大量重复的代码,这个时候可能需要for来进行循环代码。
###?例如
classnumbers=['zhang','wang','su','meng']
for classnumber in classnumbers:
print(classnumber)
zhang
wang
su
meng
我们设定一个列表将我们同学的名字写到列表中,之后我们设置一个关联量classnumber,使用for进行循环,最后输出这个关联量classnumber,python将从列表classnumbers中重复取出元素,最后输出的就是列表中所有的名字。
当然如果想要在循环中加入更多的操作也是可以的。
例如:
classnumbers=['zhang','wang','su']
for calssnumber in classnumbers:
print (f"{classnumber.title()},that is a good guy
Zhang,that is a good guy
Wang,that is a good guy
Su,that is a good guy
当我们完成for循环后,想要进行一些操作,可以取消缩进,没有缩进的代码只能执行一次
classnumbers=['zhang','wang','su']
for calssnumber in classnumbers:
print (f"{classnumber.title()},that is a good guy
print("they are good boys")
Zhang,that is a good guy
Wang,that is a good guy
Su,that is a good guy
they are good boys
当我们使用for循环的时候我们需要注意缩进的问题,我们可以使用tab进行缩进,如果我们忘记所及python无法运行,当然如果进行了多余的缩进,也会无法运行。
在循环中最重要的是:,当你输入完一句for循环后记得一定要加上:,用来告诉python下一行是循环的第一行。我也经常容易忘记,有时候找问题所在找了半天后来重写一遍的时候发现,原来是:忘记了,:的忘记很不容易被发现。
|