共计 324 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用列表推导式来去掉列表中的空字符。具体步骤如下:
- 定义一个原始列表。
- 使用列表推导式遍历原始列表的每个元素。
- 使用条件语句判断元素是否为空字符。
- 将非空字符加入新列表。
- 返回新列表作为结果。
下面是一个具体的例子:
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']
。
丸趣 TV 网 – 提供最优质的资源集合!
正文完