python有哪些循环函数 python的循环函数

主机教程 建站分享 2年前 (2022-11-07) 207次浏览

文章摘要:python有哪些循环函数 python的循环函数

python中的循环函数有以下两种 1.for循环 sum = 0 for x in range(5): su […]

python中的循环函数有以下两种

1.for循环

sum = 0

for x in range(5):

sum = sum + x

print(sum)

2.while循环

sum = 0

n = 1

while n < 5:

sum = sum + n

n = n+1

print(sum)


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python有哪些循环函数 python的循环函数
文章链接:http://www.7966.org/post/14362.html
转载请注明出处

喜欢 (0)