06 2018 档案

摘要:我先写了如下代码 class Fi: def Fibo(n): if n==1 or n==2: return 1 if n>2: return Fibo(n-1)+Fibo(n-2) f = Fi() print(f.Fibo(10)) 报错:TypeError: Fibo() takes 1 p 阅读全文
posted @ 2018-06-02 18:14 Q_Lucia 阅读(168) 评论(0) 推荐(0)
摘要:参考灰蓝大神 https://blog.csdn.net/huilan_same/article/details/76572481 文中的代码 if __name__=="__main__": report = Report_path+'/report.html' with open(report, 阅读全文
posted @ 2018-06-01 18:54 Q_Lucia 阅读(337) 评论(0) 推荐(0)