Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions Assignments/Assignment_10.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Hello Fellows,

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.


Begin to write the program with the following code below:
name = raw_input("Enter file:")
if len(name) < 1 : name = "mbox-short.txt"
handle = open(name)


Happy Coding,
Tunisia
16 changes: 16 additions & 0 deletions Assignments/Assignment_9.4
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Hello Fellows!

Write a program to read through the mbox-short.txt and figure out who has the 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.

Begin to write the program with the following code below:
name = raw_input("Enter file:")
if len(name) < 1 : name = "mbox-short.txt"
handle = open(name)



Happy Coding,
Tunisia
Binary file added Slides/05-02-16-Regex.pdf
Binary file not shown.
Binary file added Slides/05-04-16-HTTP.pdf
Binary file not shown.