Short the list in descending order in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code list = [“keyboard”, “mouse”,”joystick”,”laptop”, “camera”]list.sort(reverse=True)print(list) Output [‘mouse’, ‘laptop’, ‘keyboard’, ‘joystick’, ‘camera’] View All Python Programs