Skip to content

Commit

Permalink
Change combine_lines.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Agusschajris committed Aug 15, 2024
1 parent c831cc5 commit d259910
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions combine_lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
m_lines = file.readlines()

with open('m_names.txt', 'w') as file:
for m_line, w_line in zip(m_lines, w_lines):
file.write(m_line.strip() + " " + w_line)
for i in range(len(m_lines)):
file.write(m_lines[i].strip() + " " + w_lines[i])

0 comments on commit d259910

Please sign in to comment.