I'm trying to execute this simple code with pandas:
import pandas as pd
df = pd.read_csv("file.csv")
df.head()
But I´m getting this error:
AttributeError: partially initialized module 'pandas' has no attribute 'read_csv' (most likely due to a circular import)
I've read some post but I´m not able to solve the problem, what should I do?