Consider a following snippet:
a = 0 if a == 0 or a > 0: print(a)
Essentially, I want to do something when a is not nega
a
Well python !> doesn't work.But
!>
if not a > 70: print(' The number is Not bigger than 70') else: print(' The number is DEFINITELY bigger than 70')
this surprisingly works