分类:列表、排序
知识点:
字典序排序 sorted(my_list)
题目来自【牛客】
def sort_strings_by_lex_order(strings):# 使用内置的sorted函数进行排序,默认是按照字典序排序sorted_strings = sorted(strings)# 返回排序后的字符串列表return sorted_stringsn = 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 软件工程小施同学