is there a more effecient way to write this to only take up one line? This works but I feel this can somehow be compressed down to a single line of code
python
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'])
Use a for:
Btw.
delis not a function.