輸入第一行爲一個正整數n(1≤n≤1000),下面n行爲n個字符串(字符串長度≤100),字符串中只含有大小寫字母。
數據輸出n行,輸出結果爲按照字典序排列的字符串。
9 cap to cat card two too up boat boot
boat boot cap card cat to too two up
n = int(input()) str_array = [] for i in range(n): str_array.append(input().strip()) str_array = sorted(str_array) for j in range(n): print(str_array[j])