파이썬 while

Jmnote (토론 | 기여)님의 2021년 10월 4일 (월) 19:16 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

파이썬 while
i = 1
while i < 5:
    print(i)
    i += 1
i = 1
while i < 5:
    print(i)
    if i > 3:
        break
    i += 1
i = 1
while i < 5:
    print(i)
    i += 1
else:
    print("Now, i >= 5")
import time 

wait_seconds = 3
target_tick = time.time() + wait_seconds

number = 0
while time.time() < target_tick:
    number += 1

print(f"{wait_seconds}초 동안 {number}번 반복했습니다.")

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}