要對Python字符串列表進行排序,可以使用內置的sort()方法或者sorted()函數。
使用sort()方法:
my_list = ["apple", "banana", "cherry", "orange"]
my_list.sort()
print(my_list)
使用sorted()函數:
my_list = ["apple", "banana", "cherry", "orange"]
sorted_list = sorted(my_list)
print(sorted_list)
這兩種方法都會按照字母順序對字符串列表進行排序。如果想要按照字符串的長度進行排序,可以使用sorted()函數的key參數:
my_list = ["apple", "banana", "cherry", "orange"]
sorted_list = sorted(my_list, key=len)
print(sorted_list)
這樣就會按照字符串的長度進行排序。