分类:列表、排序
知识点:
- 字典序排序 sorted(my_list)
题目来自【牛客】
python
def sort_strings_by_lex_order(strings):
# 使用内置的sorted函数进行排序,默认是按照字典序排序
sorted_strings = sorted(strings)
# 返回排序后的字符串列表
return sorted_strings
n = int(input().strip())
strings = []
for i in range(n):
strings.append(input().strip())
sorted_strings = sort_strings_by_lex_order(strings)
# 输出结果
for s in sorted_strings:
print(s)
by 软件工程小施同学