Quick actions

cmd+k|ctrl+k

Navigation

Languages

Booleans

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-13T13:57:32.828864Z

Updated

2026-07-13T13:57:32.828864Z

a="Ankush"

is_cool=False

is_cool=True

print(bool(0))#According to python interpretation

print(bool("False"))
INFO