In this assignment, we will continue working with the information from the previous population analysis assignments.
Write a Python script that includes the following functionalities.
Calculate the number of individuals after the specified time using the growth rate and initial number. We assume that the population grows according to unlimited growth; use the formula below:
\[π_π‘=π_0β π^{πβπ‘}\] >>> population name,initial size,growth rate,time: ELEPHANTS,7806,0.039,20
> It is expected that the population elephants will grow from 7806 to 17028 in 20 years.
>>> population name,initial size,growth rate,time: Giraffespopulation,503,0.026,50
> It is expected that the population giraffes will grow from 503 to 1845 in 50 years.
>>> population name,initial size,growth rate,time: Population Lions,5003,0.030,30
> It is expected that the population lions will grow from 5003 to 12305 in 30 years.