3 lines
82 B
Python
3 lines
82 B
Python
print(not True + True) # Should be False
|
|
print(not True or True) # Should be True
|