forked from miczar1/djfz-24_25
first task draft
This commit is contained in:
parent
6e757f969a
commit
b213667c17
14
TaskA01/task01.py
Normal file
14
TaskA01/task01.py
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
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='')
|
Loading…
Reference in New Issue
Block a user