This commit is contained in:
HOME-VM-TOSCHOOL 2023-12-10 17:55:24 +01:00
parent 16c8d13f3c
commit 3ece132738
1 changed files with 33 additions and 0 deletions

33
TaskD04/run.py Normal file
View File

@ -0,0 +1,33 @@
import re
file_name: str = "simple"
def find_maximum_digit_substrings(text):
pattern = re.compile(r"\d+")
matches = pattern.findall(text)
result = " ".join(matches)
return result
with open(file_name + ".in", "r", newline="", encoding="utf8") as file:
text = file.read()
with open(file_name + ".exp", "r", newline="", encoding="utf8") as file:
expected = [line.rstrip() for line in file.readlines()]
found_lines = find_maximum_digit_substrings(text)
mistake = False
for line in expected:
if line in found_lines:
print(f"{line}")
else:
print(f"NO: {line}")
mistake = True
if mistake:
print("ERROR")