두 튜플 사이의 모든 쌍 조합을 찾아야 할 때 목록 이해를 사용할 수 있습니다.
아래는 동일한 데모입니다 -
예시
from itertools import product N = 2 print("The value of N has been initialized to ") print(N) my_result = [ele for ele in product(range(1, N + 1), repeat = N)] print("All tuple combinations until 2 are : " ) print(my_result)
출력
The value of N has been initialized to 2 All tuple combinations until 2 are : [(1, 1), (1, 2), (2, 1), (2, 2)]
설명
-
필요한 패키지를 가져옵니다.
-
N 값이 설정되고 콘솔에 표시됩니다.
-
목록 이해는 값을 N까지 반복하는 데 사용되며 증가합니다.
-
이것은 변수에 할당됩니다.
-
콘솔에 출력으로 표시됩니다.