Lv240 发表于 2020-11-13 10:21:41

python中sorted的用法求助


sorted(iterable, /, *, key=None, reverse=False)
    Return a new list containing all items from the iterable in ascending order.
   
    A custom key function can be supplied to customize the sort order, and the
    reverse flag can be set to request the result in descending order.

这个解释里面的'/'和'*'到底是个什么?其他的都能理解,好像没有用到/和*的地方啊。
有没有大佬解释一下?

Twilight6 发表于 2020-11-13 10:41:13



这是 Python 3.8 后函数定于允许出现 '\' 以及 '*'

具体解释看这篇知乎文章吧~~:

https://www.zhihu.com/question/287097169

永恒的蓝色梦想 发表于 2020-11-13 12:32:09

nahongyan1997 发表于 2020-11-13 10:47
首先我并不知道你在问题中所指的两个参数的作用,但是我想说的是:
Python 中的 sorted 函数在大多数情况 ...

所有人都不会用到的东西?

nahongyan1997 发表于 2020-11-15 07:40:01

永恒的蓝色梦想 发表于 2020-11-13 12:32
?

不要跟我说这个参数可以在什么情况下用到,告诉我你到现在为止有没有用到过。


还有就是别没事只发一个问号,恨不尊重人,谢谢。

永恒的蓝色梦想 发表于 2020-11-15 13:49:45

nahongyan1997 发表于 2020-11-15 07:40
不要跟我说这个参数可以在什么情况下用到,告诉我你到现在为止有没有用到过。




你这句话,就有了骂别人不是人的意思了。

nahongyan1997 发表于 2020-11-15 20:02:33

我欠考虑了,抱歉
页: [1]
查看完整版本: python中sorted的用法求助