let install most used python package pandas using pip
run the command pip install pandas to install the package
package pandas is ready to use
importpandasaspddata=[['Anji','B','India'],['Eva','D','Russia']]df=pd.DataFrame(data,columns=['first_name','last_name','country'])print(df)# output:# first_name last_name country# 0 Anji B India# 1 Eva D Russia