Using the Python interactive shell, put the elements of the list you instantiated in exercise 3 in alphabetical order.
What will be an ideal response?
>>> mon.sort()
>>> mon
['Apr', 'Feb', 'Jan', 'Jun', 'Mar', 'May']
or
>>> sorted(mon)
['Apr', 'Feb', 'Jan', 'Jun', 'Mar', 'May']
Computer Science & Information Technology