摘要:
阅读全文
摘要:
参考博客 https://www.cnblogs.com/bingabcd/p/6671368.html 一、位置参数 调用函数时根据函数定义的参数位置来传递参数。 二、关键字参数(用于函数调用) 用于函数调用,通过“键-值”形式加以指定。可以让函数更加清晰、容易使用,同时也清除了参数的顺序需求。 阅读全文
摘要:
def Fibonacci(n): if n==1: return 1 elif n==2: return 1 return Fibonacci(n-1)+Fibonacci(n-2) 阅读全文