my problem is to use elif in this ternary operator like i want to use 3 conditions in ternary operator
a = 3
if a>0:
print("is odd" if a %2 !=0 else "is even")
Make a code which return 3 strings one for its odd one for its even and atlast for its zero