# Python code to convert list of # string into sorted list of integer # List initialization list_string = [1, 12, 15, 21, 131] # Using list comprehension output = [str(x) for x in list_string] # Printing output print(output)