I need scrape two tables. This table can scrape with this code:
url = requests.get('https://www.quebec.ca/sante/problemes-de-sante/a-z/coronavirus-2019/situation-coronavirus-quebec/')
c = url.content
# Create a soup object
soup = BeautifulSoup(c, 'html.parser')
my_table = soup.find('table', attrs = {'class': 'contenttable'})
But why this second table I cant save:

Code:
my_table2 = soup.find('table', attrs = {'class': 'table table-condensed table-hover table-striped'})
my_table2 is empty...
