while loop

有一種循環叫死循環,一經觸發,就運行個天荒地老、海枯石爛python

海枯石爛代碼ide

count = 0
while True:
    print("你是風兒我是沙,纏纏綿綿到天涯...",count)
    count +=1    # 至關於 count = count +1

其實除了時間,沒有上面是永恆的,死loop仍是少寫爲好oop

上面的代碼循環100次就退出吧spa

count = 0
while True:
    print("你是風兒我是沙,纏纏綿綿到天涯...",count)
    count +=1
    if count == 100:
        print("去你媽的風和沙,大家這些脫了褲子是人,穿上褲子是鬼的臭男人..")
        break
View Code

回到上面的for循環的例子,如何實現讓用戶不斷的才年齡,但只給最多3次機會,再猜不對就退出程序。3d

#!/usr/bin/env python
# -*- coding: utf-8 -*-
 
 
my_age = 28
 
count = 0
while count < 3:
    user_input = int(input("input your guess num:"))
 
    if user_input == my_age:
        print("Congratulations, you got it !")
        break
    elif user_input < my_age:
        print("Oops,think bigger!")
    else:
        print("think smaller!")
    count += 1 #每次loop 計數器+1
else:
    print("猜這麼屢次都不對,你個笨蛋.")
View Code
相關文章
相關標籤/搜索