Skip to content

Files

Latest commit

Jan 30, 2022
f0af0c4 · Jan 30, 2022

History

History

email id dictionary

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Sep 13, 2020
Jan 30, 2022
Apr 16, 2021

Write a program to read through the mbox-short.txt and figure out who has sent the greatest number of mail messages. The program looks for 'From ' lines and takes the second word of those lines as the person who sent the mail. The program creates a Python dictionary that maps the sender's mail address to a count of the number of times they appear in the file. After the dictionary is produced, the program reads through the dictionary using a maximum loop to find the most prolific committer.