Online Python Compiler

x = 25 y = 18 or_op = x or y print(or_op) and_op = x and y print(and_op) not_op = not x print(not_op) x = 0 not_op = not x print(not_op)