import regex as re with open('shakespeare.in', encoding='utf8') as file: lines = file.readlines() pattern = re.compile(r'Hamlet') for line in lines: line = line.strip() x = re.search(pattern, line) if x: print(line)