Guest User

Untitled

a guest
Feb 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/usr/local/lib/python3
  2.  
  3. q = (1, 2, 3)
  4. e = q + (5,)
  5. print(e)
  6.  
  7. q = (1, 2, 3)
  8. e = q + (5,)
  9.  
  10. q = [1, 2, 3]
  11. q.append(5)
  12. print(q) # [1, 2, 3, 5]
Add Comment
Please, Sign In to add comment