Como agregar elementos an en en python

array = [1,2,3,4]

array.append(5)

print(array)
Vivacious Vendace