[Python]Variable[ 자료형 ]
변수의 명명규칙1) 예약어 안됨2) _, 영문자(대소문자 구별), 숫자(시작 안됨)3) 특수문자, 공백 안됨4) 클래스는 Pascal case, 변수나 함수는 Snake case5) Python에서는 null 대신 None 사용print("=== 논리형 ===")a = Trueprint(type(a), type(False))print("=== 숫자형 ===")b = 10print(type(b))print(type(1.0))c = 10 + 5j + 6Jprint(type(c)) # 복소수print(type('Hello Python')) 논리 자료형 : True, Falseprint("{0:=^20}".format('Boolean Type'))a = Trueprint(type(a), type(False))..