id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

david.white@denison.edu cs111fall2019 > pond4
prev  |  next  |  chance

Exercise 4.1.18: Generalize the pond function so that it takes as parameters the number of years, the initial population, the harvest, and the annual growth rate (which in the book was 8% always). Your function should return the final population after that many years. Do not print anything. Your answer should be in the form of an integer, so use the int() command at the end. Assume rate is a number between 0 and 1.


pond4(20, 12000, 1500, 0.08) → -12711
pond4(4, 12000, 800, 0.08) → 12720
pond4(1, 12000, 1500, 0) → 10500

...Save, Compile, Run (ctrl-enter)

def pond4(years, initialPopulation, harvest, rate):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Copyright Nick Parlante 2017 - privacy