Python/예제

[파이썬 예제] while 반복문 2의배수 출력하기

Fullyalive 2017. 8. 12. 19:07

i = 1

while i <= 50:

print(i * 2)

i = i + 1


저작자표시 변경금지 (새창열림)