课程
/后端开发
/Python
/python进阶
cmp(x, y)函数是否是Python的内置函数?参数x和y可以是字符串或者整数?
2015-05-14
源自:python进阶 4-3
正在回答
In [1]: ?cmp Docstring: cmp(x, y) -> integer Return negative if x<y, zero if x==y, positive if x>y. Type: builtin_function_or_method In [2]: cmp(1,2) Out[2]: -1 In [3]: cmp('hello','the') Out[3]: -1
在终端自己试一下,就可以回答你的疑问,cmp(x,y)的确是内置函数builtin里头的,x,y可以是字符串和整数
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计