My Code
match_point = soup.find_all('td', class_="table-body__cell u-center-text")
match_point
output
Get all element of 1s,3rd and 5th so on odd position
match_data = match_point[::2]
match_data
Output
Get all element of 1s,3rd and 5th so on even position
point_data = match_point[1::2]
point_data
Output
Top comments (0)