猫史档案馆


【Python作品分享】这群喵不好惹【教程贴】

用户:春娇Vicky春娇Vicky查看:0 回复:0 评论:0 创建时间:2021-07-01T15:15:31


【作品展示】

center_image

 

【作品介绍】

诶呦

 

【作品源代码】

def fab(n):

    n1 = 1
    n2 = 1
    n3 = 1
    if (n < 1):
        print('输入有误!!!!!!!!!!!!!!!!!!!')
        return (-1)
    while (n - 2 > 0):
        n3 = (n2 + n1)
        n1 = n2
        n2 = n3
        n -= 1
    return n3

result = fab(20)
if result != 1:
    print("有%d帮小喵诞生!" % result)

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页