Python Reverse Array


/ Published in: Python
Save to your folder(s)

arr[::-1] does a list slice to reverse the array

str(x) for x in arr[::-1] casts the ints in the array as strings

map(str, arr[::-1]) does the same thing by using map to cast the ints

" ".join() joins the resulting strings with a space


Copy this code and paste it in your HTML
  1. #!/bin/python3
  2.  
  3. import sys
  4.  
  5. n = int(input().strip())
  6. arr = [int(arr_temp) for arr_temp in input().strip().split(' ')]
  7. print(" ".join(str(x) for x in arr[::-1]))
  8. print(" ".join(map(str, arr[::-1]))) # or
  9. print(' '.join(map(str, reversed(arr)))) # or

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.