Como obter apenas entrada sem branco da lista no Python

",".join(string for string in lst if len(string) > 0)
Dull Dogfish