forked from miczar1/djfz-24_25
15 lines
444 B
Python
15 lines
444 B
Python
def contains_word_hamlet(line):
|
|
target = "Hamlet"
|
|
line_length = len(line)
|
|
target_length = len(target)
|
|
|
|
for i in range(line_length - target_length + 1):
|
|
if line[i:i + target_length] == target:
|
|
return True
|
|
return False
|
|
|
|
with open('/Users/jwieczor/Desktop/djfz-24_25-jezyki-1/TaskA01/simple.in', 'r') as file:
|
|
for line in file:
|
|
if contains_word_hamlet(line):
|
|
print(line, end='')
|