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

목록의 Python 인덱스 특정 순환 반복

<시간/>

이 튜토리얼에서는 주어진 문제를 해결하는 단계를 살펴보겠습니다.

  • 목록 및 색인을 초기화합니다.
  • len을 사용하여 목록의 길이 찾기 .
  • 길이를 사용하여 목록을 반복합니다.
  • 인덱스 % 길이를 사용하여 요소의 인덱스 찾기 .
  • 요소를 인쇄합니다.
  • 색인을 증가시킵니다.

간단한 루프 반복입니다. 큰 어려움 없이 쓰실 수 있습니다. 코드를 봅시다.

# initializing the list and index
alphabets = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
start_index = 5
# finding the length
length = len(alphabets)
# iterating over the list
for i in range(length):
   # finding the index of the current element
   element_index = start_index % length
   # printing the element
   print(alphabets[element_index], end=' ')
# incrementing the index for the next element
start_index += 1

출력

위의 코드를 실행하면 다음과 같은 결과를 얻을 수 있습니다.

f g h a b c d e

결론

튜토리얼과 관련하여 질문이 있는 경우 댓글 섹션에 언급하세요.