# Python code to convert list of
# string into sorted list of integer
# List initialization
list_int = [1, 12, 15, 21, 131]
# mapping
list_string = map(str, list_int)
# Printing sorted list of integers
print(list(list_string))
# 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)
# Python code to convert list of
# string into sorted list of integer
# List initialization
list_string = [1, 12, 15, 21, 131]
list_int = []
# using iteration and sorted()
for i in list_string:
list_int.append(i)
# printing output
print(list_int)