-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay_7_Arrays.py
50 lines (30 loc) · 981 Bytes
/
Day_7_Arrays.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Objective
# Today, we will learn about the Array data structure. Check out the Tutorial tab for learning materials and an instructional video.
# Task
# Given an array, , of integers, print 's elements in reverse order as a single line of space-separated numbers.
# Example
# Print 4 3 2 1. Each integer is separated by one space.
# Input Format
# The first line contains an integer, (the size of our array).
# The second line contains space-separated integers that describe array 's elements.
# Constraints
# Constraints
# , where is the integer in the array.
# Output Format
# Print the elements of array in reverse order as a single line of space-separated numbers.
# Sample Input
# 4
# 1 4 3 2
# Sample Output
# 2 3 4 1
#!/bin/python3
import math
import os
import random
import re
import sys
if __name__ == '__main__':
n = int(input().strip())
arr = list(map(int, input().rstrip().split()))
arr.reverse()
for i in arr:print(i,end=" ")