Revert "TaskA01 done"

This reverts commit fd916dddbe.
This commit is contained in:
kubapok 2020-10-26 17:10:49 +01:00
parent fd916dddbe
commit ba0b9953b6
2 changed files with 0 additions and 15 deletions

View File

View File

@ -1,15 +0,0 @@
#!/usr/bin/python3
import sys
def line_contain_hamlet(line):
if 'Hamlet' in line:
return True
else:
return False
for line in sys.stdin:
if line_contain_hamlet(line):
print(line.rstrip('\n'))