Skip to content

Instantly share code, notes, and snippets.

@mishin
Created August 1, 2023 16:21
Show Gist options
  • Select an option

  • Save mishin/3aa0242c8f41fe48c9c0ba5b43c19517 to your computer and use it in GitHub Desktop.

Select an option

Save mishin/3aa0242c8f41fe48c9c0ba5b43c19517 to your computer and use it in GitHub Desktop.

Revisions

  1. mishin created this gist Aug 1, 2023.
    7 changes: 7 additions & 0 deletions read_songs.py
    Original 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())