python按字符串大小进行降序排序
时间: 2023-05-10 12:56:06 浏览: 103
python 实现字符串排序
5星 · 资源好评率100%
可以使用sorted函数,其中key参数指定排序规则为字符串大小,reverse参数指定降序排序。示例代码如下:
```python
strings = ['apple', 'banana', 'orange', 'pear']
sorted_strings = sorted(strings, key=len, reverse=True)
print(sorted_strings)
```
输出结果为:
```
['banana', 'orange', 'apple', 'pear']
```
阅读全文