“Вход в массив в Python” Ответ

массив как вход в 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

Вход в массив в Python

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

Ответы похожие на “Вход в массив в Python”

Вопросы похожие на “Вход в массив в Python”

Больше похожих ответов на “Вход в массив в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования