Question: Help me solve this python code. It is for a beginner python class so no tk or root. organisms will be left to multiply for

Help me solve this python code. It is for a beginner python class so no tk or root.
organisms will be left to multiply for example:
Starting number of organisms: 2
Average daily increase: 30%
Number of days to multiply: 10
The program should display the following table of data:
Etc.
This is my code so far:
int(input("Starting number of organisms: "))
int(input(Average daily population increase: "))
days_to_multiply = int(input("Number of days to multiply: "))
30%= days_to_multiply
for i in range(days_to_multiply):
Help me solve this python code. It is for a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!