Files
ChocoPy/pa3-tests/core/op_cmp_bool.py
T
2021-05-16 11:17:01 -04:00

9 lines
168 B
Python

print(True == True)
print(True == False)
print(False == True)
print(False == False)
print(True != True)
print(True != False)
print(False != True)
print(False != False)