What is the best way of creating an alphabetically sorted list in Python?
Please use sorted() function in Python3
items = ["love", "like", "play", "cool", "my"] sorted(items2)