TaskF05 F04
This commit is contained in:
parent
d7877f4f5f
commit
5e5500d0ee
@ -9,9 +9,6 @@ def replace_second_number(line):
|
||||
group1 = matches.group(1)
|
||||
group2 = matches.group(2)
|
||||
group3 = matches.group(3)
|
||||
print('group1:', group1)
|
||||
print('group2:', group2)
|
||||
print('group3:', group3)
|
||||
if group2 != '':
|
||||
modified_line = group1 + group3
|
||||
return modified_line
|
||||
|
@ -1,3 +1,3 @@
|
||||
Mam 2 jabłka i banananów.
|
||||
Mam 22 jabłka i banananów oraz 20 gruszek.
|
||||
Widziałem 2 bociany.
|
||||
Mam 2 jabłka i 35 banananów oraz 20 gruszek.
|
||||
Widzia2łem bociany.
|
||||
|
32
TaskF05/run.py
Normal file
32
TaskF05/run.py
Normal file
@ -0,0 +1,32 @@
|
||||
import re
|
||||
import sys
|
||||
|
||||
|
||||
def analyze_line(line):
|
||||
word_pattern = r'\w+'
|
||||
pattern = re.compile(r'(\w+ \w+ )(\w+)(.*)')
|
||||
words = re.findall(word_pattern, line)
|
||||
if len(words) >= 3:
|
||||
modified_line = re.sub(pattern, r'\1' + 'x' * len(words[2]) + r'\3', line, count=1)
|
||||
return modified_line
|
||||
else:
|
||||
return line
|
||||
|
||||
def write_answer(row, ouput_file):
|
||||
with open(ouput_file, "a", encoding="utf-8") as file:
|
||||
file.write(row)
|
||||
|
||||
|
||||
def main_function(input_file, output_file):
|
||||
with open(output_file, "w", encoding="utf-8") as output_file1:
|
||||
with open(input_file, "r", encoding="utf-8") as file:
|
||||
for row in file:
|
||||
write_answer(analyze_line(row), output_file)
|
||||
|
||||
output_file ='simple.out'
|
||||
input_file = 'simple.in'
|
||||
# input_file = sys.argv[1]
|
||||
# output_file = sys.argv[2]
|
||||
main_function(input_file, output_file)
|
||||
|
||||
|
2
TaskF05/simple.out
Normal file
2
TaskF05/simple.out
Normal file
@ -0,0 +1,2 @@
|
||||
Mam 2 xxxxxx i 35 banananów.
|
||||
Widziałem 2 xxxxxxx.
|
Loading…
Reference in New Issue
Block a user