“Einnahme von Array -Eingaben in Python” Code-Antworten

Array als Eingabe in Python

list1 = list() #empty list

num = input("How many elements do you want") #user tells the range(optional)

#iterating till user's range is reached
for i in range(int(num)): 
    n = input("Enter a value ")#asking for input of 1 value 
    list1.append(int(n))#adding that value to the list

print(list1)
Excited Emu

Einnahme von Array -Eingaben in Python

x=[int(input()) for i in range(int(input("How many elements are in list : ")))] print(x) 
Courageous Cat

Ähnliche Antworten wie “Einnahme von Array -Eingaben in Python”

Fragen ähnlich wie “Einnahme von Array -Eingaben in Python”

Weitere verwandte Antworten zu “Einnahme von Array -Eingaben in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen