1.使用函数的__defaults__魔术方法 demo: # coding=utf-8 def f(a,b,c=1): pass f.__defaults__ 输出结果: (1,) 2.使用inspect模块 使用inspect.getargspec获取 # coding=utf-8 import inspect def f(a,b,c=1): pass print(inspect.getargspec(f)) 输出结果: ArgSpec(args=['a', 'b', 'c'], varar…