pihta24

Зеркало

Feb 2nd, 2021
518
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. def mirror(arr):
  2.     mirrored_part = arr.copy()
  3.     mirrored_part.reverse()
  4.     arr += mirrored_part
Advertisement
Add Comment
Please, Sign In to add comment