Quick actions

cmd+k|ctrl+k

Navigation

Languages

Booleans

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-03T22:01:20.671181Z

Updated

2025-11-03T22:01:20.671181Z

# Booleans
name = 'Harsh'
is_cool = False     # 0

is_cool = True      # 1

print(bool(1))
print(bool(0))

INFO