jfz-2023-s473555/TaskD02/run.py
HOME-VM-TOSCHOOL 71e2825c81 Task D02
2023-12-10 17:32:26 +01:00

40 lines
894 B
Python

import re
file_name: str = "simple"
def find_pies_lines(text: str) -> list[str]:
# Define the regular expression pattern
pattern = re.compile(r"\bpies\b", re.IGNORECASE)
# Split the text into lines
lines = text.split("\n")
# Use the regular expression to find lines containing "pies"
pies_lines = [
line for _, line in enumerate(lines, start=1) if re.search(pattern, line)
]
return pies_lines
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_pies_lines(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")