Question #256162

I want you to make an array of numbers for me. All you have to do is make a program that will let me input any random integer in one line. Afterwards, it will then print out all the numbers I've inputted, backwards, on separate lines. Care to do that for me? Input The first line contains the size of the array. The next line contains the integers separated by a space. 5 1·64·32·2·11 Output Multiple lines containing integers on each. 11 2 32 64 1

Expert's answer

n=int(input("Enter the size of the array: "))


print("Enter ",n," number of elements of the array on the same line: ")
arr=[int(x) for x in input().split()]
print("Elements of the array before reverse: ")
for i in arr:
    print(i,end=" ")
print("\nElements of the array after reverse: ")
arr2=arr[::-1]
for i in arr2:
    print(i)
LATEST TUTORIALS
APPROVED BY CLIENTS