常用操作

1. 去除list空元素

list(filter(lambda x: x, "a;b;c".split(';')))
原文地址:https://www.cnblogs.com/wangcongxing/p/14298851.html