python remove empty element from list code example
Example: remove empty strings from list python
without_empty_strings = [string for string in a_list if string != ""]
without_empty_strings = [string for string in a_list if string != ""]