python array from 2 list code example
Example 1: reverse element in a list in python 3
my_list = [1, 7, 9, 11, 12, 20]
# Reverse a list by using a slice
print(my_list[::-1])
Example 2: list vs array python
#a list in Python stores multiple values
fruits = ['apples','bananas','oranges','cherries']