Homework 16
- Due Mar 22, 2016 by 9:30am
- Points 10
- Submitting a file upload
- File Types py
- Available until Apr 19, 2016 at 9:30am
Download the files for each of the problems below. Upload the files with the changes you generate as a response to this homework.
Problem #1
File: hw-16-q1.py Download hw-16-q1.py
Use the weather.get_report block to answer the following question about a city:
"Is a snowstorm happening at the moment?"
For this problem, consider that a snowstorm may be happening if:
- The temperature is lower than or equal to 32.
- Humidity is above 80.
- Wind is higher than 30.
Use this logic to calculate whether Seattle is going through one. Print "Yes" if it is, print "No" if it isn't.
Problem #2
File: hw-16-q2.py Download hw-16-q2.py
Using the wind speed and the temperature, you can approximate the "feels like" temperature.
The formula is roughly: windchill = temperature - wind ** 0.7
Notice that the "**" operator is the "raising to a power" operator.
Use the formula to answer: What is the "feels like" temperature in Blacksburg?
Problem #3
File: hw-16-q3.py Download hw-16-q3.py