What is reverse indexing in list
Answers
Answered by
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
Sociology,
3 months ago
English,
3 months ago
English,
6 months ago
English,
6 months ago
Environmental Sciences,
11 months ago