Quick actions

cmd+k|ctrl+k

Navigation

Languages

condit1

Snippet info

Language

Python

Visibility

public

Author

count-francis

Created

2025-09-09T01:39:43.224775Z

Updated

2025-09-09T02:27:50.473868Z

def a():
    print("hello")
    return None
x=5 if print("outer if") else (print("second if true") \
if print("inner if") or 0 else a())

if print("outer if"):
    x=5
elif print("inner if") or 0:
    x=print("second if true")
else:
    x=a()
INFO