课程
/后端开发
/Python
/初识Python
那比较两个数在python中是哪个函数
2018-04-02
源自:初识Python 7-2
正在回答
import operator #首先要导入运算符模块
operator.gt(1,2) #意思是greater than(大于)
operator.ge(1,2) #意思是greater and equal(大于等于)
operator.eq(1,2) #意思是equal(等于)
operator.le(1,2) #意思是less and equal(小于等于)
operator.lt(1,2) #意思是less than(小于)
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序