-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsolution_22.py
56 lines (44 loc) · 1.58 KB
/
solution_22.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Note for the correction:
# We here allow the population to be float numbers, but one could also
# constrain it to be integers only.
# 1. Simulate a few generation. How large is the population after 3 generations?
pop = 1000
growth_factor = 1.5
print("generation 0 - population:", pop)
# At each generation, the population is multiplied by growth factor.
pop *= growth_factor
print("generation 1 - population:", pop)
pop *= growth_factor
print("generation 2 - population:", pop)
pop *= growth_factor
print("generation 3 - population:", pop)
# As can be seen here, duplicating code is only practical when doing a few
# generation, beyond that it quickly becomes tedious and error prone.
# Using a loop is a much better solution.
pop = 1000
growth_factor = 1.5
for generation in range(3):
pop *= growth_factor
print("generation", generation, "- population:", pop)
# 2. Use a while loop to simulate the population until it reaches 10'000
# individuals or more. How many generation does it take?
# Initialization.
pop = 1000
growth_factor = 1.5
generation = 0
# While the population is under 10'000, we continue to grow it.
while pop < 10_000:
pop *= growth_factor
generation += 1
print("generation", generation, "- population:", pop)
print(
"It takes",
generation,
"generations to reach 10'000 or more individuals. "
"The actual population at that point is:",
pop,
)
# 3. How does the above change if the population starts at 100 individuals?
# All we have to do is change the initial population size to 100 in the code
# that we wrote for point 2 above.
pop = 100