make doesn't work

This commit is contained in:
= 2020-11-03 13:52:41 +01:00
parent 9ed7398c52
commit 08ed000cd2
5 changed files with 19 additions and 0 deletions

1
TaskA01/Makefile Normal file
View File

@ -0,0 +1 @@
shakespeare.res

18
TaskA01/run.py Normal file
View File

@ -0,0 +1,18 @@
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'))

0
TaskA02/Makefile Normal file
View File

0
TaskA03/Makefile Normal file
View File

0
TaskA04/Makefile Normal file
View File