Classwwork 16 - Python
- Due Mar 22, 2016 by 11am
- Points 10
- Submitting a file upload
- Available until Apr 19, 2016 at 9:30am
For the following exercises, and those from the next few days, we have provided you with some starting code in python. Download the .py files and put them in your 'compuational_thinking-f15-1' folder (the one we created on installation). Open the files in spyder, add your name at the top next to the "Author" field and write the code for the exercise in it. Upload the approriate file to each question.
Dictionaries
Problem #1
File: cw-16-q1.py Download cw-16-q1.py
The algorithm in this exercise tries to answer the following question: "What is the price per page of a given book?"
The information necessary to make this calculation is given inside a dictionary that has three keys: "number_of_pages", "price" and a "discount". Put the pieces of this algorithm in the right order, to calculate the appropriate answer.
Problem #2
File: cw-16-q2.py Download cw-16-q2.py
Calculating the average speed during a trip requires knowing the total distance traveled and the amount of time it took to cover it. In this problem the trip data is stored in a dictionary with two keys: "distance" and "time". For scientific purposes the information has been stored in meters and seconds.
The code provided has some of the pieces, which have been scrambled, that you will need to calculate the average speed in miles per hour. Reassemble the lines and complete the code to calculate the average speed.
Problem #3
File: cw-16-q3.py Download cw-16-q3.py
Write a program that answers the following question:<br>Given the current temperature and humidity, what is the current weather like?
Consider the following logic:
- If the current temperature is below 32 degrees and the humidity is at least 50%, print "snowing".
- If the current temperature is above 32 degrees and the humidity is at least 50%, print "raining".
- Otherwise, print "clear".
Problem #4
File: cw-16-q4.py Download cw-16-q4.py
Use the weather.get_report() block to check whether it is snowing, raining or clear in:
- Seattle
- Miami
- New York
- Blacksburg
Problem #5
This is a multi-step problem. First we will use spyder's property explorer to analyze the weather.get_forecasted_reports("Blacksburg") block.
- Give a short description of what the block returns, using your understanding of lists and dictionaries.
- Draw a table representation of the data and describe its abstraction.