python循环练习题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python循环练习题相关的知识,希望对你有一定的参考价值。
# continue 的作用 跳出本次循环 执行下次循环
# else 作用是 在while 打印的完成的基础上 在打印一行i
# end=()不换行
num = 0
while num <=10:
num+=1
if num ==3:
continue #continue 的作用 跳出本次循环 执行下次循环
print(num)
else:
print("00000000000",end=" ")
print("11111111111",end=" ")
以上是关于python循环练习题的主要内容,如果未能解决你的问题,请参考以下文章