I was writing codes in Pandas framework, but when I want to use pd. method, program is just giving me "AttributeError: partially initialized module 'pandas' has no attribute 'Series' (most likely due to a circular import)" this error. I have no clue about why.
import pandas as pd
student = ['Arin', 23, 'CE']
ps_student = pd.Series(student)
print(ps_student)
print(type(ps_student))