1. Given a Python list you should be able to display Python list in the following order.
aList = [100, 200, 300, 400, 500]
==================
Expected output:
[500, 400, 300, 200, 100]
2. list1 = ["M", "na", "i", "Ke"]
list2 = ["y", "me", "s", "lly"]
Expected output:
['My', 'name', 'is', 'Kelly']
3. Given a Python list. Turn every item of a list into its square.
aList = [1, 2, 3, 4, 5, 6, 7]
==================
Expected output:
[1, 4, 9, 16, 25, 36, 49]
4. Concatenate two lists in the following order.
list1 = ["Hello ", "take "]
list2 = ["Dear", "Sir"]
================
Expected output:
['Hello Dear', 'Hello Sir', 'take Dear', 'take Sir']
5. Remove empty strings from the list of strings
list1 = ["Mike", "", "Emma", "Kelly", "", "Brad"]
===========
Expected output:
["Mike", "Emma", "Kelly", "Brad"]