Lab #1: Python Basics - Mahmooduddin/CS5590-Python GitHub Wiki

Welcome to the CS5590-Python wiki!

Question 1: Read a file which includes at least two paragraphs. Calculate the word frequency for each word in the file.

Solution:

Screen shot for task1

Source Code for task1

Question 2: Write a Python program to check if a string contains all letters of the alphabet.

Solution:

Screen shot for task2

Source code for task2

Question 3: Write a Python program to find those numbers which are divisible by 5 and multiple of 2, between 700 and 1700.

Solution:

Screen shot for task3

Source code for task3