SyntaxFix
Write A Post
Hire A Developer
Questions
The 'else' statement is mandatory. You can do stuff like this :
>>> b = True >>> a = 1 if b else None >>> a 1 >>> b = False >>> a = 1 if b else None >>> a >>>
EDIT:
Or, depending of your needs, you may try:
>>> if b: print(a)