I am trying to extract the player name and the description from the website - https://y20india.in/delhi-capitals-squad-ipl-2024/
But the code did not provide the list of player name and the role.
from bs4 import BeautifulSoup
import requests
import pandas as pd
page_to_scrape = requests.get("https://y20india.in/delhi-capitals-squad-ipl-2024")
soup = BeautifulSoup(page_to_scrape.text,"html.parser")
playername = soup.findAll("td")
for results in playername:
print(results.text)