반복문, 함수,람다
python built-in data type # Numeric # int(정수) # float(실수) # complex(복소수) # Sequence # list # tuple # range # Text Sequence # str # Mapping # dict # Set # set # Bool # True, False # python control statement # if, for, while # 논리식 => 3 > 5 => False a = 100 if a > 5: print('aa') print('bb') elif a > 2: print('haha') else: print('cc') print('dd') # for문은 크게 2가지 형태로 사용이 되요! # for ~ in range # for ~ i..
2021.07.01