可以使用列表推導式來去掉列表中的空字符。具體步驟如下:
下面是一個具體的例子:
def remove_empty_strings(lst):
return [x for x in lst if x != ""]
# 測試代碼
original_list = ["hello", "", "world", " ", "python", ""]
new_list = remove_empty_strings(original_list)
print(new_list)
輸出結果為:['hello', 'world', ' ', 'python']
。