행렬에서 사전 키를 나타내는 불변 행을 필터링해야 하는 경우 목록 이해와 'isinstance' 메서드를 사용할 수 있습니다.
아래는 동일한 데모입니다 -
예시
my_list = [[24, 15, [32, 33, 12]], ["pyt", 8, (14, 54)], [{15:24}, 13, "fun"], [True, "cool"]] print("The list is :") print(my_list) my_result = [row for row in my_list if all(isinstance(element, int) or isinstance(element, bool) or isinstance(element, float) or isinstance(element, tuple) or isinstance(element, str) for element in row)] print("The result is :") print(my_result)
출력
The list is : [[24, 15, [32, 33, 12]], ['pyt', 8, (14, 54)], [{15: 24}, 13, 'fun'], [True, 'cool']] The result is : [['pyt', 8, (14, 54)], [True, 'cool']]
설명
-
목록의 목록이 정의되어 콘솔에 표시됩니다.
-
목록 이해는 요소를 반복하는 데 사용되며 'isinstance' 메서드는 요소가 특정 데이터 유형에 속하는지 확인하는 데 사용됩니다.
-
그렇다면 목록에 저장되고 변수에 할당됩니다.
-
이것은 콘솔에 출력으로 표시됩니다.