Python Tutorial - 18 : Dataframes in pandas | How to create pandas dataframe? | pandas series

Опубликовано: 04 Октябрь 2024
на канале: Swatech Talks
27
2

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