当前分类:python>>正文

提高代码效率:使用while循环优化程序循环过程

来源:互联网   更新时间:2023年7月21日  

Python 笔记

一、针对固定次数的循环


for i in range(5):
    print(i)


i = 0
while i < 5:
    print(i)
    i += 1

二、针对不固定次数的循环


n = 0
total = 0
while n < 10:
    total += n
    n += 1
print(total)

三、使用while循环控制条件判断


n = 1
while n <= 10:
    if n % 2 == 0:
        print(n)
    n += 1

本文固定链接:https://6yhj.com/leku-p-4977.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: 算法