반복문
2021. 1. 13. 11:48
프로그래밍/Python
while문 조건문이 참일 때에 한해서 반복적으로 코드가 수행됨 1부터 9까지의 수를 모두 더하는 경우 i = 1 result = 0 # i가 9보다 작거나 같을 때 아래 코드를 반복적으로 실행 while i
조건문 if & 반복문 for
2020. 12. 22. 18:17
프로그래밍/Python
if문 인자 b가 int이거나 float일때만 출력 def plus(a, b): if type(b) is int or type(b) is float: return a + b else: return None print(plus(12, "55")) if문에는 if ~ elif ~ else 사용할 수 있음 for문 python에서는 string도 배열(이론적으로)이기때문에 for문에 사용 가능 days = ("월", "화", "수", "목", "금") for day in days: if day is "수": break else: print(day) ''' 월 화 ''' for num in [1, 2, 3, 4, 5]: print(num) ''' 1 2 3 4 5 ''' for num in "hello": pr..