This is the program to quickly get started with pandas dataframe creation
import pandas as pd
customer_df = pd.DataFrame(
{
"Name": ["Rahul", "Abhishek", "Sarah"],
"Age": [22, 35, 25],
"gender": ["male", "male", "female"]
}
)
print(customer_df["Age"].max())
#pandas #python #swatechtalks #techtalks #learning #dataanalysis #data #pandaslibrary #datamanipulation #datascience #dataengineering