lista=[1,"dos",3.0,4,5]

lista.insert(6,6)
print(lista)

lista.append(7)
print(lista)

lista[1]=2
print(lista)
del lista 

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: