Discover the answers you need at Westonci.ca, where experts provide clear and concise information on various topics. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly 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 :)