可以使用列表推导式来去掉列表中的空字符。具体步骤如下:
下面是一个具体的例子:
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']
。