Print the list items in reverse order by using reverse() function in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com 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