学了 Python 中的数据类型,语句,接下来就来说一下 Python 中的函数,函数是结构化编程的核心.我们使用函数可以增加程序的可读性.自定义函数时使用关键字def 函数由多条语句组成.在定义函数的时候我们可以使用如下的方式给函数定义一个解释文档. def square(x): 'This is comment of this method !' return x * x # 获取方法注释信息 square.__doc__ 上面定义的函数我们就可以通过函数名.__doc__的方式获取方法的文…
1.python中try/except/else/finally正常的语句是这样的: try: normal excute block except A: Except A handle except B: Except B handle except: other exception handle else: if no exception,get here finally: print(hello world) 说明: 正常执行的程序在try下面执行normal excute block执行…