Due Date: April 6, 2009 | Points: 100 |
x = 3.9 * x * (1 - x)
to:x = -0.8 * x * x + 1
Try it out with at least 3 values. Turn in your program in the file “chaos3.py”.n = input("How many numbers should I print? ")
Then you will need to change the loop to use n instead of a specific number. Turn in your program in the file “chaos5.py”.