How to download pandas in jupyter notebook

while import pandas i didn’t get an traceback but while using any function like pd.series([25
,69])
i get an get traceback
guys can you help to sort it out

Hi,

What traceback do you get? As typed, your code won’t work because Series is a class, and starts with a capital letter - as in:

import pandas as pd
pd.Series([1, 2])

Cheers,

Matthew

Thanks matthew.brett