Quick actions

cmd+k|ctrl+k

Navigation

Languages

307 Booleans

Snippet info

Language

Python

Visibility

public

Author

cslxuser

Created

2025-03-31T18:04:39.287963Z

Updated

2025-03-31T18:04:39.287963Z

#booleans
name = 'Peter'
is_cool = False
print(is_cool)
is_cool = True
print(is_cool)

print(bool(0))
INFO