课程
/后端开发
/Python
/python进阶
如果这个练习中我想把sorted的另一个参数作为默认的,默认为['bob', 'about', 'Zoo', 'Credit']怎么写呢?
2018-10-14
源自:python进阶 2-15
正在回答
sorted中第一个参数是iterable,必选参数,不可作为默认的
sorted(iterable[,cmp,[,key[,reverse=True]]])
作用:Return a new sorted list from the items in iterable.
第一个参数是一个iterable,返回值是一个对iterable中元素进行排序后的列表(list)
可选的参数有三个,cmp、key和reverse。
举报
学习函数式、模块和面向对象编程,掌握Python高级程序设计