notebook.community
Edit and run
In [1]: a = 3 if a % 2 == 0: print('Even') else: pass
a = 3 if a % 2 == 0: print('Even') else: pass