python从列表中删除空值

时间:2016-10-18 15:48:57

标签: python list

我得到的这一点并不像预期的那样:

for ea in wordlist:
    if ea == '':
        del(ea)
    else:
        do a bunch of stuff

运行此功能后,wordlist[:10]的输出为:

['', 'RADDATZ:', 'Ladies', 'and', 'gentlemen', 'the', 'Republican', 'nominee', 'for', 'president']

为什么我的行不处理空值?

我用字典尝试了同样的事情并且调用del(words[""])确实有效,列表有什么不同?谢谢

0 个答案:

没有答案