Posts

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") Cou...

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

Python data structures: Assignment 7.1

Coursera: Python data structures Assignment 7.1 Week 3 Write a program that prompts for a file name, then opens that file and reads through the file, and print the contents of the file in upper case. Use the file  words.txt  to produce the output below. You can download the sample data at  http://www.py4e.com/code3/words.txt Solution: # Use words.txt as the file name fname = input("Enter file name: ") fh = open(fname,'r') for i in fh.readlines():  print(i.upper().rstrip()) Coursera official website: https://www.coursera.org/learn/python-data/home/welcome

Python data structure: chapter 7 quiz

Image
Coursera:  Python data structures chapter 7 Week 2 Quiz solutions: Coursera official website: https://www.coursera.org/learn/python-data/home/welcome

It security defence against digital dark arts (Network attacks)

Image
Topic:  Network attacks Week 1 Quiz solutions: