when opening csv file with pandas read_csv, I noticed missing text from the output. See screen shot of the what the CSV file looks like when opened normally and also when opened using pandas read_csv:
I tried to execute csv_read on the csv file instead of the txt file but I'm getting the same results.
with open('intC.txt', 'w') as f:
for line in output:
f.write(line)
with open('intC.txt', 'r') as f1:
for line in f1:
print(line)
data = pd.read_csv('intC.txt')
print('\n')
print(data)
