If I want to find all <p> elementwith id = test with BeautifulSoup, I use:
for item in soup.findAll('p', {"id": "test"}):
How to find each item
with an identifier starting with a certain letter - let them say "t"?
I tried "t *" but it does not work.
source share