파이썬의 데이터 타입은 크게 6가지 카테고리로 분류될 수 있다. Numeric Types : int, float, complex Sequence Types : str, list, tuple Mapping Typye : dict Set Type : set Boolean Type : bool Binary Type : bytes, bytearray, memoryview [Code Examples]😁 : Numeric Types : int, float, complex # 1.Numeric Types : int(정수), float(실수), complex(복소수) x=3; y=3.5; z=2+2j; print(type(x)); # print(type(y)); # print(type(z)) # Sequenc Type..