I am using pandas to work with an excel file and create a dataframe from that. It's able to read the file, but when i print the resulting dataframe it's showing up in a text format which is a lot different from the normal one we are used to.
This is how i'm reading the excel file and printing it:
locations = pd.read_excel('file.xlsx')
print(locations)
this outputs as
which looks like a text output
I want it to output normally like this:
how can i fix my output?