在Python中,对这两个东西有明确的规定: 函数function —— A series of statements which returns some value to a caller. It can also be passed zero or more arguments which may be used in the execution of the body. 方法method —— A function which is defined inside a class body…
学了 Python 中的数据类型,语句,接下来就来说一下 Python 中的函数,函数是结构化编程的核心.我们使用函数可以增加程序的可读性.自定义函数时使用关键字def 函数由多条语句组成.在定义函数的时候我们可以使用如下的方式给函数定义一个解释文档. def square(x): 'This is comment of this method !' return x * x # 获取方法注释信息 square.__doc__ 上面定义的函数我们就可以通过函数名.__doc__的方式获取方法的文…