Short the list in lower case ascending order in python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code list = [“keyboard”, “mouse”,”jyostic”,”laptop”,”camera”]list.sort(key = str.lower)print(list) Output [‘camera’, ‘jyostic’, ‘keyboard’, ‘laptop’, ‘mouse’] View All Python Programs