====== while ====== ===== 예제 ===== * 1 부터 5 까지 출력 * >>> i = 1 >>> while i <= 5: ... print(i) ... i = i + 1 1 2 3 4 5 ---- * [[Python]] {{tag>Python}}