循环语句

  • #循环语句,内容: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
posted @ 2016-12-03 16:18  Daniel.lu  阅读(241)  评论(0编辑  收藏  举报