python beautifulsoup缩短代码

时间:2012-05-11 16:17:11

标签: python beautifulsoup

有一种更有效的方法来写这个只占用一行吗?这有效,但我觉得这可以以某种方式压缩成一行代码

del(thearticle['data-book-api'])
del(thearticle['data-book-human'])
del(thearticle['data-book'])
del(thearticle['data-chapter'])
del(thearticle['data-selected-verses'])
del(thearticle['data-verse-modal-enabled'])
del(thearticle['data-version'])

1 个答案:

答案 0 :(得分:3)

使用for:

for key in ['data-book-api', 'data-book-human', ...]:
    del thearticle[key]

顺便说一下。 del不是函数。