pranaman

Untitled

Dec 15th, 2023
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. ## we don't really know how the file is organized
  2. all_columns='/Users/X/Library/Mobile Documents/com~apple~Numbers/Documents/file.csv'.readlines()
  3.  
  4. ## so it is up to you to get this far
  5. cols_as_list=all_columns.split(",")
  6.  
  7. for row in range(0, len(cols_as_list), 6):
  8. print("row", row)
  9. for this_col in range(6):
  10. print("%3s" % (cols_as_list[row+this_col]), end="")
  11. print()
Advertisement
Add Comment
Please, Sign In to add comment