excel导入和操作
教一教怎么做,在excel操作了大部分,却这个难住了
我想引号里的空值去掉,做成下面的列表形式
d.append(list(d1)) 改为
d.append(list(d1))
d.append([i for i in d1 if i and i != " "])