Ejemplo: cómo llamar al objeto de una lista de Python
L = [1, 2, 3, 4]
print(L[1]) ## Calls the index position of the list "L"
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)
L = [1, 2, 3, 4]
print(L[1]) ## Calls the index position of the list "L"