Iterating through tags in Python

52 Views Asked by At

I am iterating through meta tags in Python with the aim of printing them to the console.

for i in soup.head:
print(soup.meta)

The problem I'm having is that the code is printing the very first meta tag it reads for every instance of tag that it finds. How can I increment the soup.meta to print the next tag?

1

There are 1 best solutions below

0
On BEST ANSWER

Well, you're iterating over a collection, but for every element you print something unrelated -soup.meta. Try something like this:

for tag in soup.find_all('meta'):
    do_something(tag)