Advertisement
Guest User

cleg

a guest
Jul 22nd, 2008
53,432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. >>> x = 15
  2. >>> if (x<10) or (x>20):
  3. ...     print "x is bad"
  4. ... elif 10<x<20:
  5. ...     print "x is good!"
  6. ... else:
  7. ...     print "x is werid"
  8. ...
  9. x is good!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement