共计 477 个字符,预计需要花费 2 分钟才能阅读完成。
有几种方法可以去除字符串中的空字符串:
- 使用循环和条件语句:
def remove_empty_strings(strings):
result = []
for string in strings:
if string != "":
result.append(string)
return result
- 使用列表推导式:
def remove_empty_strings(strings):
return [string for string in strings if string != ""]
- 使用 filter 函数:
def remove_empty_strings(strings):
return list(filter(lambda string: string != "", strings))
可以通过调用这些函数来去除字符串中的空字符串,例如:
strings = ["hello", "", "world", "", "python"]
result = remove_empty_strings(strings)
print(result)
输出:
['hello', 'world', 'python']
丸趣 TV 网 – 提供最优质的资源集合!
正文完