Ответ:
Объяснение:
def count_of_amoebas(hours):
hours//=3
count = 1
for h in range(hours):
count*=2
return(count)
>>> count_of_amoebas(24)
256
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
Объяснение:
def count_of_amoebas(hours):
hours//=3
count = 1
for h in range(hours):
count*=2
return(count)
>>> count_of_amoebas(24)
256