각진 세상에 둥근 춤을 추자

[Python] 반복문 while 본문

Python

[Python] 반복문 while

circle.j 2023. 1. 4. 11:40

while문 

i = 1

while i <= 5:
    print('i: ',i)
    i += 1

 


1~10까지의 합 구하기 

total, k = 0,1

while k<=10:
    total += k
    k += 1
print('1~10까지 합: ', total)

 


1~10까지의 짝수합 구하기 

total, k = 0,1

while k<=10:
    if k%2 == 0:
        total += k
    k += 1
print('1~10까지 짝수합: ', total)

 


5와 7의 최소공배수 (break문)

break
num = 1
while True:
    if num % 5 == 0 and num % 7 ==0:
        break
    num += 1

print('5와 7의 최소공배수: ', num)

 


continue

n = 0
while n <= 10:
    n+= 1
    if n % 2 == 0:
        continue
    print(n, end=' ')

 

 

'Python' 카테고리의 다른 글

[Python] 파이썬 자료구조 List(동적 리스트)  (0) 2023.01.06
[Python] 반복문 for  (0) 2023.01.04
[Python] 조건문  (1) 2023.01.04
[Python] 문자열  (0) 2023.01.04
[Python] 기본 입출력  (0) 2023.01.03