Python循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python循环相关的知识,希望对你有一定的参考价值。
循环
for循环
for语句的格式如下:
for <> in <对象集合>:
if <条件>:
break
else if <条件>:
continue
<其他语句>
else:
<>
例子:输出乘法表
print("Multiplication Table")
#Display the number title
print(" ",end=‘ ‘)
for j in range(1,10):
print(" ",j,end=‘ ‘)
print() #jump to the new line
print("_________________________________________________")
#Display table body
for i in range(1,10):
print(i,"|",end=‘ ‘)
for j in range(1,10):
#Display the product and align properly
print(format(i*j,"4d"),end=‘ ‘)
print() #Jump to the new line
break 在需要时终止for循环,如果for循环未被break终止,则执行else块中的语句。
continue 跳过位于其后的语句,开始下一轮循环。
while循环
for语句的格式如下:
while <对象集合>:
<>
else:
<>
例子:求两个整数的最大公因子(Prompt the user to enter two integers)
n1=eval(input("Enter first integer:"))
n2=eval(input("Enter second integer:"))
gcd=1
k=2
while k<=n1 and k<=n2:
if n1%k==0 and n2%k==0:
gcd=k
k+=1
print("The greatest common divisor for",n1,"and",n2,"is",gcd)
在 python 中,while … else 在循环条件为 false 时执行 else 语句块。
判断条件可以是任何表达式,任何非零、或非空(null)的值均为true。
注意:无限循环(死循环)可以使用 CTRL+C 来中断循环。
以上是关于Python循环的主要内容,如果未能解决你的问题,请参考以下文章