For example, I have this code:
a = 33
b = 200
if b > a:
# do some thing
I want to switch the >
sign without using the else/if-else condition to ==
or <
, is there a way I can store logic condition in a variable x and do something like:
if b x a:
# do something