python:for循环
Posted my-essay
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:for循环相关的知识,希望对你有一定的参考价值。
for循环可以遍历任何序列的项目,如一个列表或者一个字符串。
例1:自定义字符串
fruits =‘苹果5个,香梨4个‘
for i in fruits:
print(i)
运行结果 :
例2:自定义一个列表
List =[‘苹果‘,‘梨子‘]
for i in List:
print(i)
运行结果:
例3 :输出1-9的数字
for i in range(1,10):
print(i)
运行结果:
思维拓展:
案例1:
fruits=‘苹果5个,香梨4个,西瓜3个,哈密瓜6个,桃子3个,桔子7个‘
使用for循环统计水果的总数
fruits =‘苹果5个,香梨4个,西瓜3个,哈密瓜6个,桃子3个,桔子7个‘
Sum =0
for i in range(len(fruits)):
if fruits[i] ==‘个‘:
Num=int(fruits[i-1])
Sum=Sum+Num
print(Sum)
运行结果:
案例2:
使用for循环输出9*9乘法表
for i in range(1,10):
for j in range(1,10):
print(‘%d*%d=%d\\t‘ %(i,j,i*j),end=‘‘)
print()
显示结果:
以上是关于python:for循环的主要内容,如果未能解决你的问题,请参考以下文章