Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

acces previous index in cycle python

a_list = [1,2,3,4,5]

for index, elem in enumerate(a_list):
    if (index+1 < len(a_list) and index - 1 >= 0):
        prev_el = str(a_list[index-1])
        curr_el = str(elem)
        next_el = str(a_list[index+1])

        print(prev_el, curr_el, next_el)
OUTPUT
1 2 3
2 3 4
3 4 5
 
PREVIOUS NEXT
Tagged: #acces #previous #index #cycle #python
ADD COMMENT
Topic
Name
3+3 =