Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 14th, 2012  |  syntax: Python  |  size: 0.31 KB  |  hits: 22  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. print "Without copying the list"
  2. hand = list(range(16))
  3. player1 = hand
  4. player2 = hand
  5. player1.remove(5)
  6. print hand
  7. print player1
  8. print player2
  9.  
  10. print "\n*With* copying the list"
  11. hand = list(range(16))
  12. player1 = list(hand)
  13. player2 = list(hand)
  14. player1.remove(5)
  15. print hand
  16. print player1
  17. print player2