Untitled
unknown
plain_text
2 years ago
307 B
5
Indexable
name = input("Enter file:") if len(name) < 1: name = "mbox-short.txt" handle = open(name) count = dict() emails = [] for words in handle: words = words.rstrip() if not words.startswith('From '): continue words = words.split() email = words[1] emails = emails.append(email)
Editor is loading...