PY4E - Python for Everybody

PHOTO EMBED

Mon Oct 31 2022 00:22:44 GMT+0000 (Coordinated Universal Time)

Saved by @L0uJ1rky45M #python

# Search for lines that contain 'From'
import re
hand = open('mbox-short.txt')
for line in hand:
    line = line.rstrip()
    if re.search('From:', line):
        print(line)

# Code: http://www.py4e.com/code3/re01.py
content_copyCOPY

https://www.py4e.com/html3/11-regex