view csvtotsv.py @ 30:9f40651f6080

works, but not quite right for cc simulation
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Thu, 29 Jul 2021 10:21:51 +0100
parents e07789816ca5
children
line wrap: on
line source

#!/usr/bin/python3
import csv,sys
with open(sys.argv[1],newline='') as f:
  r=csv.reader(f)
  for l in r:
    print('\t'.join(s.replace("\n","") for s in l))