import pandas
path = r"C:\Users\david\Documents\Excel\BitcoinPricesCopy.xlsx"
file = pandas.read_excel(path)
print(file)
Error:
File "C:\Users\david\Programming\MyPython\PycharmProjects\pythonProject\numbers.py", line 4, in file = pandas.read_excel(path) AttributeError: partially initialized module 'pandas' has no attribute 'read_excel' (most likely due to a circular import)