About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
eightHundreds
2/11/2017 - 5:37 AM
share
Share
add_circle_outline
Save
获得函数的默认参数
获得函数的默认参数
get_method_default_param.py
content_copy
file_download
import inspect a = inspect.getargspec(eat_dog) zip(a.args[-len(a.defaults):],a.defaults)
clear