Archived
1
0
Fork 0
This repository has been archived on 2024-05-10. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
PY4E/Assignment 10.2/main.py
Michael Loveys bb326fbd0a inital commit
2021-09-08 10:33:48 -05:00

17 lines
No EOL
407 B
Python

name = input("Enter file:")
if len(name) < 1:
name = "mbox-short.txt"
handle = open(name)
emailhour = dict()
for line in handle:
line = line.strip().split()
if len(line) > 0:
if line[0] == "From":
hour = line[5].split(":")[0]
emailhour[hour] = emailhour.get(hour, 0) + 1
for hour,numberofemails in sorted(emailhour.items()):
print(hour,numberofemails)