|
|
|
|
|
by portent
3432 days ago
|
|
code can be very simple, and we don't always know what it will do. Simple example: can you tell me if this snippet of (python) code will ever terminate or not? x=0.5 while x<0.6 or x>0.7: x=3.59*x*(1-x)
print x
... and what if the 3.59 was replaced by a different number - maybe 3.60 ? or 3.84 ? |
|