Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Repeating equations
#1
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!
Reply
#2
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
Reply
#3
#!/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)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Why is 2/3 not just .666 repeating? DocFro 4 643 Dec-12-2023, 09:09 AM
Last Post: buran
  repeating a user_input astral_travel 17 2,136 Oct-26-2022, 04:15 PM
Last Post: astral_travel
  if else repeating Frankduc 12 2,424 Jul-14-2022, 12:40 PM
Last Post: Frankduc
  matching a repeating string Skaperen 2 1,197 Jun-23-2022, 10:34 PM
Last Post: Skaperen
  Random Number Repeating Tzenesh 5 3,924 Jan-13-2021, 10:00 PM
Last Post: deanhystad
  factorial, repeating Aldiyar 4 2,738 Sep-01-2020, 05:22 PM
Last Post: DPaul
  number repeating twice in loop JonnyEnglish 3 3,258 Nov-24-2019, 09:23 AM
Last Post: ThomasL
  First non-repeating char and some errors. blackknite 1 2,236 Jan-06-2019, 02:19 PM
Last Post: stullis
  repeating for loop Kaldesyvon 5 3,773 Dec-06-2018, 08:00 PM
Last Post: ichabod801
  Repeating same number in sequence Rudinirudini 6 4,164 Oct-28-2018, 07:44 PM
Last Post: DeaD_EyE

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020