Files
BH-Python-Interpreter-2023/testcases/basic-testcases/test6.in
Wankupi 2e29af68b3 init
2023-10-30 19:50:48 +08:00

11 lines
169 B
Plaintext

#Comparision Test
two = 0 + 1 * 2
three = two + 1
print(two < three)
print(two > three)
print(two <= three)
print(two >= three)
print(two == three)
print(two != three)