Quick actions

cmd+k|ctrl+k

Navigation

Languages

 Logical Operators

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-12T17:16:25.249647Z

Updated

2025-11-12T17:21:57.321121Z

#  Logical Operators

# >
# <
# ==
# >=
# <=
# !=
# and or not

print('1' == 1)
print('1' is 1)














INFO