Guest User

Untitled

a guest
May 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. >> a, b, *c = [1, 2, 3, 4, 5]
  2. => [1, 2, 3, 4, 5]
  3. >> p a, b, c
  4. 1
  5. 2
  6. [3, 4, 5]
  7. => [1, 2, [3, 4, 5]]
Add Comment
Please, Sign In to add comment