Created
August 1, 2023 16:21
-
-
Save mishin/3aa0242c8f41fe48c9c0ba5b43c19517 to your computer and use it in GitHub Desktop.
Revisions
-
mishin created this gist
Aug 1, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ f1 = open('spain.txt') f2 = open('transcribition_from_es.txt') f3 = open('translate_ru.txt') for line1, line2, line3 in zip(f1, f2, f3): print(line1.strip()) print(line2.strip()) print(line3.strip())