minha_lista = ["oi", "tudo", "bem?"] minha_lista.insert(1, "Python") print(minha_lista) # output: ['oi', 'Python', 'tudo', 'bem?']