6 lines
75 B
Python
6 lines
75 B
Python
c = True
|
|
d = False
|
|
|
|
print(c and d)
|
|
print(not c or d)
|
|
print(c == d and True) |