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

Python의 N 요소 증분 튜플

<시간/>

'N'개의 요소 증분 튜플을 생성해야 하는 경우 제너레이터 표현식과 '튜플' 방식을 사용할 수 있습니다.

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

예시

N = 3
print("The value of 'N' has been initialized")
print("The number of times it has to be repeated is : ")
print(N)

my_result = tuple((elem, ) * N for elem in range(1, 6))
print("The tuple sequence is : ")
print(my_result)

출력

The value of 'N' has been initialized
The number of times it has to be repeated is :
3
The tuple sequence is :
((1, 1, 1), (2, 2, 2), (3, 3, 3), (4, 4, 4), (5, 5, 5))

설명

  • 'N' 값이 초기화되어 콘솔에 표시됩니다.
  • 특정 요소가 있는 튜플에 지정된 범위에서 'N'배 곱한 값이 변수에 할당됩니다.
  • 이 시퀀스가 ​​생성되고 콘솔에 출력으로 표시됩니다.