举出python中sort和sorted应用例子
时间: 2023-12-04 10:50:43 浏览: 79
python中sort和sorted排序的实例方法
5星 · 资源好评率100%
1. sort()应用例子:
```python
# 对列表进行排序
nums = [5, 2, 8, 1, 9]
nums.sort()
print(nums) # 输出 [1, 2, 5, 8, 9]
# 对字符串排序
words = ['apple', 'banana', 'orange', 'kiwi']
words.sort()
print(words) # 输出 ['apple', 'banana', 'kiwi', 'orange']
```
2. sorted()应用例子:
```python
# 对列表进行排序,并将结果赋值给一个新的变量
nums = [5, 2, 8, 1, 9]
sorted_nums = sorted(nums)
print(sorted_nums) # 输出 [1, 2, 5, 8, 9]
# 对字符串排序,并将结果赋值给一个新的变量
words = ['apple', 'banana', 'orange', 'kiwi']
sorted_words = sorted(words)
print(sorted_words) # 输出 ['apple', 'banana', 'kiwi', 'orange']
```
阅读全文