transpiler.py 124 B

1234567
  1. import csv
  2. with open('TTExample.csv') as csvfile:
  3. input = csv.reader(csvfile)
  4. for row in input:
  5. print(row)