python_30期while循环

Posted Memory.荒年〆

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python_30期while循环相关的知识,希望对你有一定的参考价值。

# a = 9
# while a < 10:
# print("我是while循环!")#死循环
# while a:
# print("我是while循环!") # 死循环
#while循环先判断 在执行 执行完毕在判断 根据结果 决定是否执行 还是结束循环
#怎么打破while循环 可以制作条件,打破死循环
# while a >0:
# print("{0}.我是while循环".format(a))
# a-=1#每次运行完毕后 a减去1 a= a-1 8 7 6 5 4 3 2 1 0
# # #课堂练习:利用while循环来完成1-100整数相加
# a = 1
# sum = 0 #用sum来存储结果值
# while a < 101:
# sum += a
# a += 1#2 3
# print("1-100的整数和是{0}".format(sum))
a =10
while True:#死循环的必要条件
a-=1#每次对a减去1 a=a-1
if a >0:
print("a的值:{0}".format(a))
continue
else:
break
for i in range(1,10):#i=1 i=2
# print("目前在{}行".format(i))
for j in range(1,i+1):#i=1 j=1 i=1 j=1 2 i=3 j=1 2 3
print("{0}*{1}={2} ".format(j,i,i*j),end="")
print("")

以上是关于python_30期while循环的主要内容,如果未能解决你的问题,请参考以下文章

3.2Python while循环实例

python入门基础2 if语句 while循环 for循环

Python(50)_for循环与while循环实现1-2+3...+99

python中的while循环

python_while循环_break与continue

python_30期for循环