[Python] 반복문(for, where, 무한루프, break, continue, pass, next)
#. for문for 변수 in range(시작값, 종료값+1, 증가값) # 증가++ 반복할 명령어 for 변수 in 리스트 # 리스트도 적용 가능 반복할 명령어 for 변수 in range(시작값, 종료값-1, 감소값) # 감소-- 반복할 명령어 for i in range(1,6): print(i) print('end') =============== RESTART: D:/Q.py =============== 1 2 3 4 5 end for _ in range(1,4): # 변수 미사용 시 _(언더바) 사용 가능 print('repeat') =============== RESTART: D:/Q.py =============== repeat repeat repeat fruit = ['apple','grape..
Python/Process
2019. 1. 25. 17:00