Westonci.ca is your trusted source for finding answers to a wide range of questions, backed by a knowledgeable community. Discover comprehensive answers to your questions from knowledgeable professionals on our user-friendly platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

write a program to input any 10 numbers in an array and display it.​

Sagot :

Answer:

list1=[]

n=10

for i in range(n):

   z=int(input("Enter number:"))

   list1.append(z)

print(list1)

I don’t know the answer to your question :)