Guest User

Untitled

a guest
Mar 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. print temp
  2. for i in temp[0:5]:
  3. print temp[i]
  4. temp[i] = temp[i] ^ 1
  5. print temp[i]
  6.  
  7. print temp
  8.  
  9. [0, 0, 1, 1]
  10. 0
  11. 1
  12. 1
  13. 0
  14. 0
  15. 1
  16. 1
  17. 0
  18. [0, 0, 1, 1]
Add Comment
Please, Sign In to add comment