1 Star 0 Fork 0

fanyangchu/PythonCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
chaos.py 537 Bytes
一键复制 编辑 原始数据 按行查看 历史
BhavKaran 提交于 2018-10-11 17:41 . Add files via upload
# A simple program illustrating chaotic behaviour
def main():
print("This program illustrates a chaotic function")
while True:
try:
x = float((input("Enter a number between 0 and 1: ")))
if (0 < x and x < 1):
break
else:
print("Please enter correct number")
except Exception as e:
print("Please enter correct number")
for i in range(10):
x = 3.9 * x * (1 - x)
print(x)
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fanych/pythoncode.git
git@gitee.com:fanych/pythoncode.git
fanych
pythoncode
PythonCode
master

搜索帮助