Gixed C05

This commit is contained in:
IgnBys 2023-11-21 17:15:47 +01:00
parent 96e7136c5e
commit 18ee7b7212
1 changed files with 6 additions and 6 deletions

View File

@ -73,12 +73,12 @@ def what_is_the_ended_positions():
array += line
return array
used_table = 'multi.arg'
input_file = 'multi.in'
output_file = 'multi.out'
# used_table = sys.argv[1]
# input_file = sys.argv[2]
# output_file = sys.argv[3]
# used_table = 'multi.arg'
# input_file = 'multi.in'
# output_file = 'multi.out'
used_table = sys.argv[1]
input_file = sys.argv[2]
output_file = sys.argv[3]
with open(output_file, 'w', encoding='utf-8') as readed_output_file:
with open(input_file, 'r', encoding='utf-8') as readed_input_file:
for row_input_file in readed_input_file: