개발로그필름

[python] for문 예제 본문

IT/Python

[python] for문 예제

yuullog 2022. 11. 25. 09:00
728x90
반응형
SMALL

 

for waiting_no in [0, 1, 2, 3, 4]:
    print("대기번호 : {0}".format(waiting_no))

for waiting_no in range(5): # 0, 1, 2, 3, 4
    print("대기번호 : {0}".format(waiting_no))

for waiting_no in range(1, 6): # 1, 2, 3, 4, 5
    print("대기번호 : {0}".format(waiting_no))


starbucks = ["아이언맨", "토르", "아이엠 그루트"]
for customer in starbucks:
    print("{0}, 커피가 준비되었습니다.".format(customer))

 
반응형
LIST

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

[python] 파이썬 퀴즈  (0) 2022.11.27
[python] if문 예제  (0) 2022.11.26
[python] while문 예제  (0) 2022.11.24
[python] 전달값과 반환값  (0) 2022.11.23
[python] 기본값, 키워드값  (0) 2022.11.22
Comments