attempt 1

This commit is contained in:
Zofia Bączyk 2020-11-22 13:57:23 +01:00
parent afdb5a15e8
commit e9fc3082f1
2 changed files with 9 additions and 0 deletions

0
TaskB02/Makefile Normal file
View File

9
TaskB02/run Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/python3
import sys
import re
for line in sys.stdin:
if not re.search(r'^[P|p]ies | [P|p]ies | [P|p]ies$|^[P|p]ies$',line) == None:
print(line, end ='')
else: pass