jfz-2023-s464983/TaskD01/run.py

10 lines
260 B
Python
Raw Normal View History

2023-12-09 21:52:30 +01:00
import re
def hamlet_reg(file_path):
with open(file_path, 'r', encoding='utf-8') as file:
for line in file:
if (re.search("'.*Hamlet.*", line)):
2023-12-11 14:00:27 +01:00
print(line.strip())
2023-12-09 21:52:30 +01:00
file_path = 'TaskD01\simple.in'
hamlet_reg(file_path)