How could you sort a list of strings, my_list, in order of the length of the strings ascending (smallest to largest)? Group of answer choices code example
Example: sort a list by length python
#Input
def sort():
lst = [orange, ant, phone, banana, notebook)
lst2 = sorted(lst, key=len)
return lst2
#Output : [ant, phone, banana, orange, notebook)