Advertisement
Soy_Estudiante

python_16

Jun 17th, 2022
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. a = 12, b = 15, c = 13, d = 15
  2.  
  3. (( a > b ) and ( b < d )) or (( a == c ) or ( a >= d ))
  4.  
  5. a = 13, b = 15, c = 1, d = 10
  6.  
  7. (( a > b ) and ( b < d ) or ( b < d ) and ( b < d ))
  8.  
  9. a = 13, b = 15,
  10.  
  11. not(( a > b ) and ( a < a ))
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement