1
0
Fork 0
This commit is contained in:
Arthur K. 2025-07-17 19:23:40 +03:00
parent aa81b3ea0b
commit 43fdbb8130
Signed by: wzray
GPG key ID: B97F30FDC4636357
1131 changed files with 47840 additions and 235650 deletions

View file

@ -0,0 +1,6 @@
exit()
with open('all.tsv', 'w') as out:
for i in (1,2,3):
with open(f'./combined{i}.txt') as fq, open(f'./combined{i}_ans.txt') as fa:
for line in zip(fq, fa):
print('\t'.join(map(' '.join, map(str.split, map(str.strip, line)))), file=out)