개발로그필름

[python] while문 예제 본문

IT/Python

[python] while문 예제

yuullog 2022. 11. 24. 09:57
728x90
반응형
SMALL

 

# while
customer = "토르"
index = 5
while index >= 1:
    print("{0}, 커피가 준비 되었습니다. {1}번 남았어요.".format(customer, index))
    index -= 1
    if index == 0:
        print("커피는 폐기처분 되었습니다.")

# 무한루프
customer = "아이언맨"
index = 10
while True:
    print("{0}, 커피가 준비되었습니다. 호출 {1}회".format(customer, index))
    index += 1


customer = "토르"
person = "Unknown"
while person != customer :
     print("{0}, 커피가 준비 되었습니다.".format(customer))
     person = input("이름이 어떻게 되세요? ")
 
반응형
LIST

'IT > Python' 카테고리의 다른 글

[python] if문 예제  (0) 2022.11.26
[python] for문 예제  (0) 2022.11.25
[python] 전달값과 반환값  (0) 2022.11.23
[python] 기본값, 키워드값  (0) 2022.11.22
[python] random() 함수를 이용한 랜덤 숫자 뽑기 (예제 코드)  (0) 2022.11.21
Comments