Posts

Showing posts from May, 2020

Check your knowledge Quiz

Image
Coursera:Write professional emails in English Check your knowledge  Quiz solutions: Official website of this course on Coursera: https://www.coursera.org/learn/professional-emails-english

Python data structures: Assignment 10.2

Coursera: Python data structures Assignment 10.2 Week 6 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. Solution: name = input("Enter file:") if len(name) < 1 : name = "mbox-short.txt" handle = open(name) counts = dict() for line in handle : line = line.rstrip() if line == "": continue words = line.split() if words[0] != "From" : continue time = words[5].split(":") counts[time[0]] = counts.get(time[0], 0) + 1 list = list() for key,value in counts.items() : list.append((key,value)) list.sort() for hour,count in list :

Python data structures: Certificate

Image
Coursera: Python data structures Official website for Coursera: https://www.coursera.org/learn/python *My certificate

Python data structures: Chapter 10 Quiz

Image
Coursera: Python data structures Chapter 10 Week 6 Quiz solutions: Coursera official website: https://www.coursera.org/learn/python-data/home/welcome

Python data structures: Assignment 9.4

Coursera: Python data structures Assignment 9.4 Week 5 9.4  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. Solution: name = input("Enter file:") if len(name) < 1 : name = "mbox-short.txt" handle = open(name) count = dict() for line in handle:     word = line.split()     if line.startswith('From '):         count[word[1]] = count.get(word[1], 0) + 1 largest = 0 email = '' for key in count:     if  count[key] > largest:         largest = count[key]    

Python data structure: Chapter 9 Quiz

Image
Coursera : Python data structures Chapter 9 Week 5 Quiz solutions: Coursera official website: https://www.coursera.org/learn/python-data/home/welcome

Python data structures: Assignment 8.5

Coursera: Assignment 8.5 Week 4 8.5 Open  the file  mbox-short.txt  and read it line by line. When you find a line that starts with 'From ' like the following line: From stephen.marquard@uct.ac.za Sat Jan 5 09:14:16 2008 You will parse the From line using split() and print out the second word in the line (i.e. the entire address of the person who sent the message). Then print out a count at the end. Hint:  make sure not to include the lines that start with 'From:'. You can download the sample data at  http://www.py4e.com/code3/mbox-short.txt Solution:- fname =input("Enter file name: ") fh = open(fname) count = 0 for line in fh:     line = line.rstrip()     if not line.startswith('From '):         continue     words = line.split()     print (words[1])     count += 1 print ("There were", count, "lines in the file with From as the first word") Coursera official website: https://www.c

Python data structure: Assignment 8.4

Coursera : Python data structures Assignment 8.4 Week 4 8.4  Open the file  romeo.txt  and read it line by line. For each line, split the line into a list of words using the  split()  method. The program should build a list of words. For each word on each line check to see if the word is already in the list and if not append it to the list. When the program completes, sort and print the resulting words in alphabetical order. You can download the sample data at  http://www.py4e.com/code3 Solution: fname = input("Enter file name: ") fh = open(fname) lst = list() for line in fh:     for i in line.rstrip().split(' '):         lst.append(i) lst = list(set(lst)) lst.sort() print(lst) Coursera official website: https://www.coursera.org/learn/python-data/home/welcome

Python data structures: Chapter 8 Quiz

Image
Coursera:  Python data structures  Week 4 Chapter 8 Quiz solutions: Coursera official website: https://www.coursera.org/learn/python-data/home/welcome