This commit is contained in:
= 2020-11-07 20:40:04 +01:00
parent 9ed7398c52
commit dadf179991
3 changed files with 19 additions and 0 deletions

0
TaskA01/Makefile Normal file
View File

2
TaskA01/run Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
python TaskA01/run.py "$@"

17
TaskA01/run.py Normal file
View File

@ -0,0 +1,17 @@
import sys
def is_hamlet_in_line(line):
if 'Hamlet' in line:
return True
else:
return False
file1 = open("shakespeare.res", "a")
for line in sys.stdin:
if is_hamlet_in_line(line):
file1.write(line)
print(line.rstrip('\n'))