Ejemplo de Listas en Python: Inserta un elemento en la i-esima posición de una lista.
# Inserta el elemento en la i-ésima posición de la lista.
import random
def insertar_elemento(lista, indice, elemento):
lista.insert(indice, elemento)
def imprimir_lista(lista, nombre):
for i, num in enumerate(lista):
print(f"{nombre}[{i}] = {num}")
def leer_lista():
lista = []
i = 0
while i < 10:
lista.append(int(random.randint(0, 10)))
i = i + 1
return lista
A = leer_lista()
imprimir_lista(A, "A")
cn_val = int(input("Ingrese Valor: "))
cn_ind = int(input("Ingrese Índice: "))
insertar_elemento(A, cn_ind, cn_val)
imprimir_lista(A, "A")
Versión resumida:
import random
A = [random.randint(0, 10) for _ in range(10)]
print("A:", A)
A.insert(cn_ind := int(input("Ingrese Índice: ")), cn_val := int(input("Ingrese Valor: ")))
print("A:", A)
Pueder ir al artículo principal:
Códigos Sencillos hechos en Python
I don’t think the title of your article matches the content lol. Just kidding, mainly because I had some doubts after reading the article.