Archived
1
0
Fork 0
This repository has been archived on 2024-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
PY4E/Assignment 10.2/readme.md

22 lines
514 B
Markdown
Raw Permalink Normal View History

2021-09-08 10:33:48 -05:00
10.2 Write a program to read through the mbox-short.txt and figure out the distribution by hour of the day for each of the messages. You can pull the hour out from the 'From ' line by finding the time and then splitting the string a second time using a colon.
```From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008```
Once you have accumulated the counts for each hour, print out the counts, sorted by hour as shown below.
Desired Output
```
04 3
06 1
07 1
09 2
10 3
11 6
14 1
15 2
16 4
17 2
18 1
19 1
```