Print the list items in reverse order by using reverse() function in python
View All Python Programs Source Code list = [“keyboard”, “mouse”,”jyostic”,”laptop”,”camera”] list.reverse() print(list) Output [‘camera’, ‘laptop’, ‘jyostic’, ‘mouse’, ‘keyboard’] View All Python Programs
Print the list items in reverse order by using reverse() function in python Read More »