“Cómo ingresar en una lista en Python” Código de respuesta

Cómo obtener una entrada en una lista Python

input_string = input("Enter a list element separated by space ")
list  = input_string.split()
print("Calculating sum of element of input list")
sum = 0
for num in list:
    sum += int (num)
print("Sum = ",sum)
Mysterious Meerkat

Cómo tomar la entrada de la lista en Python

a = []
s = int(input("Enter the size of array: "))
for i in range(0, s):
    ele = int(input("Enter the elements of the array: "))
    a.append(ele)
print(a) 
Excited Eland

Cómo ingresar en una lista en Python

# Create an empty list
Elements = list()

# Iterating till the range of elements that has to be input
for i in range(0, int(input("Enter the number of elements: "))):
    Elements.append(input("Enter the " + str(i + 1) + " input: ")) # Adding the element to the list 

#Printing the list
print(Elements)
KeshavM05

Respuestas similares a “Cómo ingresar en una lista en Python”

Preguntas similares a “Cómo ingresar en una lista en Python”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código