有几种方法可以去除字符串中的空字符串:
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 != ""]
登录后复制
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怎么去除空字符串的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!