首页 > 代码库 > 循环语句

循环语句

  • #循环语句,内容:count开始循环,一直循环。当数字到达>50 <60时显示文字,当数字到达70显示再见
  •  count=0
    while True:
    count +=1
    print(count)
    if count >50 and count<60:
    continue
    print("你好你好你真好")

    if count==70:
    print("再见")
    break

循环语句