python内置函数

来源:互联网 发布:网络销售工作流程 编辑:程序博客网 时间:2024/04/28 20:18

1.sorted
Help on built-in function sorted in module __builtin__:

sorted(...)

  sorted(iterable, cmp=None, key=None, reverse=False)--> new sorted list

exmaple:
for i in sorted([1,3,2]):
    printi
原创粉丝点击