首页  >  文章  >  后端开发  >  python怎么去除空字符串

python怎么去除空字符串

王林
王林转载
2024-03-02 08:34:02448浏览

python怎么去除空字符串

有几种方法可以去除字符串中的空字符串:

  1. 使用循环和条件语句:
def remove_empty_strings(strings):
result = []
for string in strings:
if string != "":
result.append(string)
return result
  1. 使用列表推导式:
def remove_empty_strings(strings):
return [string for string in strings if string != ""]
  1. 使用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']

以上是python怎么去除空字符串的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:lsjlt.com。如有侵权,请联系admin@php.cn删除