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
阅读全文
摘要:参考灰蓝大神 https://blog.csdn.net/huilan_same/article/details/76572481 文中的代码 if __name__=="__main__": report = Report_path+'/report.html' with open(report,
阅读全文

浙公网安备 33010602011771号