I am completely new to JupyterLab and python in general so I am looking for some help today. Specifically, I am interested in getting data from JuypterLab into Excel. The data I have in JL are tables that I have pulled from the internet, using the pandas function as shown in the link below. My next step that I am having trouble with is how to pull those data tables from JL to Excel. Is there a 'Get Data' function that is best for this or would it be easier using python to accomplish this task? Ideally, I want to be able to do this for a large set of data/tables that I scrape from the internet.
I'm starting using the answer to a question I asked previously: Web scraping multiple tables from a single webpage
import pandas as pd
df =pd.read_html('https://www.basketball-reference.com/international/players/roko-prkacin-1.html')[0:4]
print(df)