有幾種方法可以去除字符串中的空字符串:
-
使用循環和條件語句:
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']
登錄后復制