7 lines
80 B
Python
7 lines
80 B
Python
a = 3
|
|
b = 8
|
|
|
|
print(a<b)
|
|
print(6 >= a)
|
|
print(b > a == False)
|
|
print(True !=(a==b)) |