Skip to content

Instantly share code, notes, and snippets.

@NawshinKeya
Forked from cibofdevs/num_rainy_months.py
Created June 21, 2020 17:04
Show Gist options
  • Save NawshinKeya/a60a59eba5e6df417cbdce7275a8cb02 to your computer and use it in GitHub Desktop.
Save NawshinKeya/a60a59eba5e6df417cbdce7275a8cb02 to your computer and use it in GitHub Desktop.
# rainfall_mi is a string that contains the average number of inches of rainfall in Michigan for every month (in inches) with every month separated by a comma.
# Write code to compute the number of months that have more than 3 inches of rainfall.
# Store the result in the variable num_rainy_months. In other words, count the number of items with values > 3.0.
# Hard-coded answers will receive no credit.
rainfall_mi = "1.65, 1.46, 2.05, 3.03, 3.35, 3.46, 2.83, 3.23, 3.5, 2.52, 2.8, 1.85"
rainfall_mi_split = rainfall_mi.split(",")
num_rainy_months = 0
for x in rainfall_mi_split:
x = float(x)
if x > 3.0:
num_rainy_months += 1
print(num_rainy_months)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment