I am quite new to Python, so I don't know how to fix following problem. I was using this code:
df = pd.read_excel(r'C:\Users\myname\Documents\email.xlsx')
print(df)
but when I executed the command I recieved the following: AttributeError: partially initialized module 'pandas' has no attribute 'read_excel' (most likely due to a circular import)
Also, it said something about numpy earlier too. Anybody know how to help me?