Answer:
arr = []
for i in range(10):
x = int(input("Enter a number: "))
arr.append(x)
arr.reverse()
for n in arr:
print(str(n), end=" ")
Explanation:
Initialize an array
Create a for loop to fill the array with user input
Inside the loop, ask the user for the numbers and put them in the array
When the loop is done, reverse the array using reverse function
Create another for loop to print the numbers with space between them