Python에는 기본적으로 다음 카테고리의 데이터 유형이 내장되어 있습니다.텍스트 유형:str숫자 유형:int, float, complex시퀀스 유형:list, tuple, range매핑 유형:dict세트 유형:set,frozenset부울 유형:bool이진 유형:bytes, bytearray, memoryview없음 유형:NoneType x = "Hello World"strTry it »x = 20intTry it »x = 20.5floatTry it »x = 1jcomplexTry it »x = ["apple", "banana", "cherry"]listTry it »x = ("apple", "banana", "cherry")tupleTry it »x = range(6)rangeTry it »x = {..