array = [1 , 2, 3] print(array)  array.append(4) print(array)  #[1 ,2 ,3] #[1 ,2 , 3, 4]

Read more of this post