How to deal with merged cells

I was trying to scrape the table from macOS Version History -

there are some merged cells and I don’t seem to find a way to deal with them.

Please let me know how to deal with this kind of cells that span multiple rows/columns.

hey @parresh77-g ,
Dealing with scrapping tables that contains merged cells requires a lot of post processing after scrapping it.
So to be a lot simpler in this ,
i would recommend you to use pandas.read_html() function.

Have a look about it on its documentation, with this you can get your task done in a single line of code.

I hope this helps.