Python3 循环语句
本章节将为大家介绍 Python 循环语句的使用。
Python 中的循环语句有 for 和 while。
while 循环
Python 中 while 语句的一般形式:
while判断条件(condition):
执行语句(statements)……同样需要注意冒号和缩进。另外,在 Python 中没有 do..while 循环。
以下实例使用了 while 来计算 1 到 100 的总和:
实例
#!/usr/bin/env python3n = 100sum = 0counter = 1whilecounter <= n: sum = sum + counter counter += 1print("1 到 %d 之和为: %d" % (n,sum))
执行结果如下:
1到100之和为:5050