1.5 KiB
1.5 KiB
Gabmap format¶
Exploration of the format of the lines in example Gabmap files Martijn had sent.
In [ ]:
with open('../data/martijn_format/Dutch613-coordinates.txt') as f: coordinates = list(f) with open('../data/martijn_format/Nederlands-ipa.utxt') as f: table = list(f)
In [ ]:
coordinates[0].split('\t')
In [ ]:
coordinates[1].split('\t')
In [ ]:
table[0].split('\t')
In [ ]:
table[1].split('\t')