Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 튜플의 주문별 데이터 유형 확인

<시간/>

튜플에서 특정 데이터 형식의 순서를 확인해야 하는 경우 'isinstance' 메서드와 'chained if'를 사용할 수 있습니다.

'isinstance' 메소드는 주어진 매개변수가 특정 데이터 유형에 속하는지 여부를 확인합니다.

'chained if'는 연결된 조건문입니다. 중첩된 선택 문을 작성하는 다른 방법입니다. 기본적으로 'and' 연산자를 사용하여 여러 if 문을 결합하고 그 결과를 평가하는 것을 의미합니다.

목록은 이기종 값(즉, 정수, 부동 소수점, 문자열 등과 같은 모든 데이터 유형의 데이터)을 저장하는 데 사용할 수 있습니다.

아래는 동일한 데모입니다 -

my_tuple = ('Hi', ['there', 'Will'], 67)

print("The tuple is : ")
print(my_tuple)

my_result = isinstance(my_tuple, tuple) and isinstance(my_tuple[0], str) and
isinstance(my_tuple[1], list) and isinstance(my_tuple[2], int)

print("Do all instances match the required data type in the same order ? ")
print(my_result)

출력

The tuple is :
('Hi', ['there', 'Will'], 67)
Do all instances match the required data type in the same order ?
True

설명

  • 목록의 튜플이 정의되고 콘솔에 표시됩니다.
  • 'isinstance' 메소드는 튜플의 요소가 특정 데이터 유형에 속하는지 확인하는 데 사용됩니다.
  • 이 작업은 튜플 목록 내의 모든 요소에 대해 수행되므로 'and' 연산자를 사용하여 작업을 연결합니다.
  • 값에 할당됩니다.
  • 콘솔에 표시됩니다.