DL
Size: a a a
DL
AP
DL
m
AP
AP
A
AP
m
DL
DL
A
AP
m
A
A
m
A
with open(tlk_path) as tsv, open(result, 'w') as out:
tsv.readline()
tsvin = csv.reader(tsv, delimiter='\t')
for profile1, profile2, dialogue in tsvin:
for participant, phrase in _parse_dialogue(dialogue):
print(phrase, file=out)
A
m