datatype
2019. 12. 28. 12:25
종류 1) Numbers 정수형 : int 실수형(소수) : float 복소수 : complex (2+3j) a, b, c, d, e, f = 5, 0.12, -6.0, -6, 0, 0.0 type(a), type(b), type(c), type(d), type(e), type(f) (int, float, float, int, int, float) 2) Boolean True/False 0을 제외한 숫자 True, 문자 True 3) String 문자열 ", ' 구분없이 사용 """, ''' 세 개 사용으로 멀티라인 s = "AaBb ccc DD " 대문자/소문자 변환 함수 s.upper() = 'AABB CCC DD ' s.lower() = 'aabb ..