Help! I am completely new to coding as you can see...lol I need help removing the scientific notation that my code outputs. I would like the results to be displayed as only real numbers...i.e (removing the "e")...I would like to show only maybe 2-4 numbers after the decimal point. Please if anyone can help me with that it would be greatly appreciated.
Organism_A = 50
year = 1
for week in range(1,52*5 + 1):
if week%2 == 0:
Organism_A/=0.25
if week%4 == 0:
Organism_A*=2
if week%52 == 0:
print("At the end of year " + str(year) + " number of Organism A remaining = " + str(Organism_A))
year+=1
Organism_B = 250
year = 1
for week in range(1,52*5 + 1):
if week%1 == 0:
Organism_B/=0.25
if week%4 == 0:
Organism_B*=3
if week%52 == 0:
print("At the end of year " + str(year) + " number of Organism B remaining = " + str(Organism_B))
year+=1
Organism_C = 1000
year = 1
for week in range(1,52*5 + 1):
if week%1 == 0:
Organism_C/=0.13
if week%4 == 0:
Organism_C*=0.75
if week%52 == 0:
print("At the end of year " + str(year) + " number of Organism C remaining = " + str(Organism_C))
year+=1