Computer Science, asked by cherly9404, 4 months ago

What is reverse indexing in list

Answers

Answered by csoumya150
0

Answer:

Python provides us with various ways of reversing a list. We will go through few of the many techniques on how a list in python can be reversed.

Examples:

Input : list = [10, 11, 12, 13, 14, 15]

Output : [15, 14, 13, 12, 11, 10]

Input : list = [4, 5, 6, 7, 8, 9]

Output : [9, 8, 7, 6, 5, 4]

Similar questions