Teo10

Untitled

Aug 17th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. number = int(input())
  2.  
  3. is_valid = (number >= 100 and number <= 200) or number == 0
  4.  
  5. if is_valid == True:
  6.     pass
  7. else:
  8.     print("invalid")
Add Comment
Please, Sign In to add comment