Aug-27-2021, 11:53 AM
Hello,
I think the best way to do it would be to read in the data (depending on how much there is) in parts, for example a column at a time. From there you can just use the parts you need in seperate cells. If you want it to stop then just seperate it into different cells. EG:
I think the best way to do it would be to read in the data (depending on how much there is) in parts, for example a column at a time. From there you can just use the parts you need in seperate cells. If you want it to stop then just seperate it into different cells. EG:
import pandas as pd import sys fran = pd.read_csv(r'C:\Users\Mark\Desktop\FrancesMsg.csv',header=None) lang_lib = {} print(fran)
for line in fran: # line.lstrip() line = str(line) print(line)