yusufbrima

Python Conditional

Jul 22nd, 2020
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. a = 6
  4.  
  5. b =  a^2  - 35
  6.  
  7. if (b < 0):
  8.     print("a is too small")
  9. else:
  10.     print("Good work, a is large enough")
Add Comment
Please, Sign In to add comment