Quick actions

cmd+k|ctrl+k

Navigation

Languages

P.35(Boolean)

Snippet info

Language

Python

Visibility

public

Author

faiho1231

Created

2026-04-02T12:58:40.365066Z

Updated

2026-04-02T13:29:40.872785Z

#print(True,False,type(True))
#print(False==0)
x=True and 1 and [1] and{0} and -1.0 and "hello"#truthy value
print(x)
y=False or 0 or [] or {} or None or 0.0#falsy value
print(y)
#======================================================
default_city='kw'
city=''
city=city or print("please input city") or default_city
print(city)
INFO