객체 유형을 결정하는 방법
객체 유형을 결정하는 것은 데이터 일관성을 보장하고 이에 따라 작업을 수행하는 데 중요합니다. Python은 이 목적을 위해 두 가지 내장 함수인 type() 및 isinstance()를 제공합니다.
type() 사용
type() 함수는 정확한 유형을 반환합니다. 객체의. 예:
>>> type([]) is list True >>> type({}) is dict True >>> type('') is str True >>> type(0) is int True
isinstance() 사용
isinstance() 함수는 객체가 상속된 유형을 포함하여 특정 유형의 인스턴스인지 확인합니다. type()과 달리 유형 상속을 지원합니다.
>>> isinstance(b, Test1) True >>> isinstance(b, Test2) True >>> isinstance(a, Test1) True >>> isinstance(a, Test2) False >>> isinstance([], list) True >>> isinstance({}, dict) True
type()과 isinstance() 중에서 선택
일반적으로 isinstance()는 파생 유형을 고려하므로 객체 유형을 확인하는 데 선호됩니다. 특정 이유로 정확한 유형 객체가 필요한 경우 Type()이 더 적합합니다. 다음은 isinstance():
def print_object_type(obj): if isinstance(obj, int): print("Integer") elif isinstance(obj, float): print("Float") elif isinstance(obj, str): print("String") else: print("Unknown type")
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3