forked from miczar1/djfz-24_25
task2 done
This commit is contained in:
parent
348556373e
commit
956123d97e
@ -1,7 +1,10 @@
|
||||
import regex as re
|
||||
|
||||
with open('simple.in', encoding='utf8') as file:
|
||||
with open('polish_wiki_excerpt.in', encoding='utf8') as file:
|
||||
lines = file.readlines()
|
||||
pattern = r'( |[Pp])ies(( \w+)|$)'
|
||||
for line in lines:
|
||||
line = line.strip()
|
||||
print(line)
|
||||
x = re.search(pattern, line)
|
||||
if x:
|
||||
print(line)
|
Loading…
Reference in New Issue
Block a user