列表去除空值

1
2
3
i = [ "a", "", "", "b", "", "c", "" ]
i = [ tmp for tmp in i if tmp ]
print(i)