객체 유형을 결정하는 방법
객체 유형을 결정하는 것은 데이터 일관성을 보장하고 이에 따라 작업을 수행하는 데 중요합니다. 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")
위 내용은 객체 유형 검사를 위해 Python의 `type()`과 `isinstance()` 중에서 선택하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!