I used Python to build a CSV file containing 150 columns, each of which should have the values 0, 1, or 2. I open Excel, enter data, obtain the data from text, select the comma as the delimiter, etc. The issue is that only the first column has been appropriately filled with the desired data; the remaining 149 columns are all empty. Yet, it seems nice and each column is filled appropriately when I load that file in PyCharm, where I typed the code.
I saved the data using
allData.to_csv('allData.csv', index=False)