Python Forum

Full Version: Repeating equations
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I am fairly new and have not seen anything in which can help me.

I am trying to use this code:
s = float(input("Enter starting value from 0 to 1:"))
r = float(input("Enter rate:"))
x = s*r*(1-s)
print x
And get a result which is correct, but I would like to repeat the formula (s*r*(1-s)) 100 times by making the output, x, s. The output should look something like what is below if s is 0.5 and r is 3:
0.75
0.5625
0.73828125
and so on and so forth for another 97 times. If you need me to clarify anything or have a suggestion, I would greatly appreciate it.

Thanks!
Huh? Huh Think

Ok
Use a for loop with a range of 100
  • put the equation inside the loop and then the following also in the loop
  • print x
  • assign s to the value of x
#!/usr/bin/python3
s = float(input("Enter starting value from 0 to 1:"))
r = float(input("Enter rate:"))

for i in range(1000000):
   s = s*r*(1-s)
   print(s)