Quick actions

cmd+k|ctrl+k

Navigation

Languages

16/4/2024

Snippet info

Language

Python

Visibility

public

Author

wongchunhei20040624

Created

2024-04-16T01:37:03.945882Z

Updated

2024-04-16T01:37:03.945882Z

value = (False or None or 0 or tuple() \
or {} or '' or[])
print(value)

value = (1 and [1] and 0 and (1,) and 1.0 )
print(value)
INFO