代码点读机 / Python / >

> Python · 运算符

大于比较。

怎么用

a > b

小例子

print(3 > 5)
print(5 > 3)

运行结果

False
True

官方文档:https://docs.python.org/zh-cn/3/reference/expressions.html#comparisons

在代码里遇到不认识的词?打开代码点读机,点一下就懂 → ← Python全部词条