COS 102-Problem Solving With Python LAB MANUAL - Part 1
COS 102-Problem Solving With Python LAB MANUAL - Part 1
LABORATORY MANUAL
for
Page | 2
INTRODUCTION
Course Overview
This course shall introduce students to the fundamental programming and problem solving techniques
using Python, a high-level, versatile programming language. The course will cover basic programming
concepts such as variables, data types, data structures and algorithms, control structures, functions, and
file input/output. Students will learn how to design and implement algorithms, use data structures, and
write efficient code.
Learning Outcome
Laboratory Requirements
The following are required for a seamless laboratory session:
A Desktop or Laptop Computer
Integrated Development Environment (Visual Studio Code, Python IDLE, Sublime Text,
Atom, Jupyter Notebook, Jupyter Lab)
Page | 3
Section 1: Python Basics
1-1. python.org: Explore the Python home page (https://python.org) to find topics that interest you.
As you become familiar with Python, different parts of the site will be more useful to you.
1-2. Hello World: Create a file titled hello_world.py. Open the file you just created and write proper
comments to support the answer to each of the questions below:
Page | 4
Section 2: Flow Control
Create a file in your current directory titled flow_control.py
In this file attempt the following the preliminary exercises that tests your basic understanding of flow
control and write programs to address the problem statements that follows:
1. What are the two values of the Boolean data type? How do you write them?
2. What are the three Boolean operators?
3. Write out the truth tables of each Boolean operator (that is, every possible combination of Boolean
values for the operator and what they evaluate to).
4. What do the following expressions evaluate to?
(5 > 4) and (3 == 5)
not (5 > 4)
(5 > 4) or (3 == 5)
not ((5 > 4) or (3 == 5))
(True and True) and (True == False)
(not False) or (not True)
Problem Statement
1. Write a program that accepts daily temperatures and returns the average temperature in
degree Celsius and also returns the number of days above average temperature.
Program Requirements:
i. If the program is run, it should prompt the user to enter the number of days of measured temperature
and sequential input prompts to for user to enter these values
ii. Write a pseudocode to implement your solution algorithms
Step 1: Calculate average temperature
Step 2: Calculate the number of days above average temperature
Page | 5
Section 3: List Data Structure
Create a new file titled list_data_structures.py for this lab exercise.
3-1. Names: Store the names of a few of your friends in a list called names. Print each person’s name
by accessing each element in the list, one at a time.
3-2. Greetings: Start with the list you used in Exercise 3-1, but instead of just printing each person’s
name, print a message to them. The text of each message should be the same, but each message
should be personalized with the person’s name.
3-3. Your Own List: Think of your favorite mode of transportation, such as a motorcycle or a car, and
make a list that stores several examples. Use your list to print a series of statements about these items,
such as “I would like to own a Honda motorcycle.”
3-4. Guest List: If you could invite anyone, living or deceased, to dinner, who would you invite? Make
a list that includes at least three people you’d like to invite to dinner. Then use your list to print a
message to each person, inviting them to dinner.
3-5. Changing Guest List: You just heard that one of your guests can’t make the dinner, so you need
to send out a new set of invitations. You’ll have to think of someone else to invite.
Start with your program from Exercise 3-4. Add a print() call at the end of your program, stating the
name of the guest who can’t make it. Modify your list, replacing the name of the guest who can’t
make it with the name of the new person you are inviting. Print a second set of invitation messages,
one for each person who is still in your list.
3-6. More Guests: You just found a bigger dinner table, so now more space is available. Think of
three more guests to invite to dinner. Start with your program from Exercise 3-4 or 3-5. Add a print()
call to the end of your program, informing people that you found a bigger table.
Use insert() to add one new guest to the beginning of your list.
Use insert() to add one new guest to the middle of your list.
Use append() to add one new guest to the end of your list.
Print a new set of invitation messages, one for each person in your list.
3-7. Shrinking Guest List: You just found out that your new dinner table won’t arrive in time for
the dinner, and now you have space for only two guests.
Start with your program from Exercise 3-6. Add a new line that prints a message saying that you can
invite only two people for dinner.
Use pop() to remove guests from your list one at a time until only two names remain in your list.
Each time you pop a name from your list, print a message to that person letting them know you’re
sorry you can’t invite them to dinner.
Print a message to each of the two people still on your list, letting them know they’re still invited.
Use del to remove the last two names from your list, so you have an empty list. Print your list to
make sure you actually have an empty list at the end of your program.
3-8. Seeing the World: Think of at least five places in the world you’d like to visit. Store the
locations in a list. Make sure the list is not in alphabetical order.
Print your list in its original order. Don’t worry about printing the list neatly;
just print it as a raw Python list. Use sorted() to print your list in alphabetical order without
modifying the actual list. Show that your list is still in its original order by printing it.
Use sorted() to print your list in reverse-alphabetical order without changing the order of the original
list. Show that your list is still in its original order by printing it again. Use reverse() to change the
order of your list. Print the list to show that its order has changed. Use reverse() to change the order
of your list again. Print the list to show it’s back to its original order. Use sort() to change your list
so it’s stored in alphabetical order. Print the list to show that its order has been changed. Use sort() to
change your list so it’s stored in reverse-alphabetical order. Print the list to show that its order has
changed.
3-9. Dinner Guests: Working with one of the programs from Exercises 3-4 through 3-7, use len() to
print a message indicating the number of people you’re inviting to dinner.
Page | 6