Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. dang=True
  2. if [ dang == False ] :
  3. print ("False")
  4. print("Value of dang is %s"%dang)
  5. else :
  6. print ("True")
  7. print("Value of ding is %s"%ding)
  8.  
  9. ding=True
  10. if ding == False :
  11. print ("False")
  12. print("Value of ding is %s"%ding)
  13. else :
  14. print ("True")
  15. print("Value of ding is %s"%ding)
  16.  
  17. False
  18. Value of dang is True
  19. True
  20. Value of ding is True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement