I have a file.xlsx with numbers in one column. I want it to convert into a list in python. The problem is when I run the code, the output is:
[[123], [234], [345], ...]
but want it to be
["123", "234", "345", ...]
How can I "delete" the additional " [] "?
import pandas as pd
excel_file = pd.read_excel(r'C:\xxx\xxx\xxx\file.xlsx')
excel_list = excel_file.values.tolist()
print(excel_list)