Python【基础】关系运算符 Python • 2021-12-23• 647次阅读 Pytho关系运算符x = 10 > 8 print(x) # True y = 10 == 10 print(y) # True 再长的路,一步步也能走完,再短的路,不迈开双脚也无法到达