“Dodaj dane wejściowe do listy Python” Kod odpowiedzi

Uzyskaj dane wejściowe listy od użytkownika w Python

a = list(map(int,input("\nEnter the numbers : ").strip().split()))
Faithful Flamingo

Jak uzyskać dane wejściowe użytkownika w Python

# number of elements 
n = int(input("Enter number of elements : ")) 
  
# Below line read inputs from user using map() function  
a = list(map(int,input("\nEnter the numbers : ").strip().split()))[:n] 
  
print("\nList is - ", a)
Bright Butterfly

Jak uzyskać dane użytkownika listy list w Python

lst = [ ] 
n = int(input("Enter number of elements : ")) 
  
for i in range(0, n): 
    ele = [input(), int(input())] 
    lst.append(ele) 
      
print(lst)
Bright Butterfly

Dodaj dane wejściowe do listy Python


shopList = [] 
maxLengthList = 6
while len(shopList) < maxLengthList:
    item = input("Enter your Item to the List: ")
    shopList.append(item)
    print shopList
print "That's your Shopping List"
print shopList

Elegant Eel

Dodaj dane wejściowe do listy Python

1print("hello")
2
3
5
6
7
8
9
3



Testy Tern

Odpowiedzi podobne do “Dodaj dane wejściowe do listy Python”

Pytania podobne do “Dodaj dane wejściowe do listy Python”

Więcej pokrewnych odpowiedzi na “Dodaj dane wejściowe do listy Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu