pihta24

Обмен личностями

Feb 2nd, 2021
482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. def swap(first: list, second: list):
  2.     t_first = first.copy()
  3.     first.clear()
  4.     first.extend(second)
  5.     second.clear()
  6.     second.extend(t_first)
  7.  
Advertisement
Add Comment
Please, Sign In to add comment