for python 3 array list code example
Example 1: python arrays
array = [1,2,3,4,5]
print(array,array[0],array[1],array[2],array[3],array[4]
#Output#
#[1,2,3,4,5] 1 2 3 4 5
Example 2: list inside a list in python
# it appends a list into a list
list1 = [1,2,3,4,5]
list1.append([6,7])
# ouput = [1, 2, 3, 4, 5, [6, 7]]