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:
1 2 3 4 5 6 7 8 |
import pandas as pd import sys fran = pd.read_csv(r 'C:\Users\Mark\Desktop\FrancesMsg.csv' ,header = None ) lang_lib = {} print (fran) |
1 2 3 4 |
for line in fran: # line.lstrip() line = str (line) print (line) |
1 2 3 4 5 6 |
while dad_has_cigs = = True : happiness = True if dad_has_cigs = = False : print ( "Dad come home!" ) happiness = not happiness break |