1.函数的定义,使用def(或“函数定义”)语句: def hello(name): return ‘Hello.'+name+'!' def fibs(num): result=[0,1] for i in range(num-2): result.append(result[-2]+result[-1]) return result 2.记录函数,在函数中写注释可以通过__doc__属性访问注释,其中下划线为双下划线,内建的help行数非常有用,可以得到有关函数,包括它的文档字符串的信息.…
创建函数 记录函数,在函数的开头写下字符串,它就会作为函数的一部分进行存储,这称为文档字符串,如 def square(x): 'Caculates the square of the number x.' return x*x >>> square.__doc__'Caculates the square of the number x.' help -- 在交互式解释器中使用会得到关于函数包括它的文档字符串的信息,如 >>> help(square)Help on…