import pandas as pd
numbers = {1,2,3,4,5}
ser = pd.Series(numbers)
print ser
I write this code in python for pandas series. but it's giving this
"AttributeError: 'module' object has no attribute 'Series'"
please help me
The Error in my problem is the file name.
I save the file as pandas.py that's why i got the error.