or symbol for select in beautiful soup code example
Example: or symbol for select in beautiful soup
from bs4 import BeautifulSoup
html='''
-
-
-
'''
page_soup=BeautifulSoup(html,'html.parser')
for item in page_soup.select(".odd,.even"):
print(item)