Learn practical skills, build real-world projects, and advance your career
import jovian
jovian.commit()
[jovian] Attempting to save notebook.. [jovian] Uploading notebook.. [jovian] Capturing environment.. [jovian] Committed successfully! https://jovian.ml/rajan-chettri01/pandas-saga-with-dsc30
 
# let us import the pandas module

import pandas as pd
ice_creame = ['chocolate','strawberry','rum raisin','mango']
pd.Series(ice_creame)
0     chocolate
1    strawberry
2    rum raisin
3         mango
dtype: object