Python Data Science Assignment
Python Data Science Assignment
Salary Exercise
import pandas as pd
df=pd.read_csv('salary.csv')
show the first five rows
print(df.head())
use the info() method the show the information about the entry.
print(df.info())
Assignment -02
Ecommerce Purchases Exercise
import pandas as pd
ecom=pd.read_csv('Ecommerce Purchase')
In this Exercise you will be given some Fake Data about some purchases done through Amazon!
Just go ahead and follow the directions and try your best to answer the questions and complete
the tasks.
Import pandas and read in the Ecommerce Purchases csv file and set it to a DataFrame called
ecom.