如何查看Python中的函数签名?
有没有一种方法可以内省一个函数,以便它向我显示有关它所采用的参数的信息(例如参数数量、类型(如果可能)、参数名称(如果命名)和返回值? dir()
似乎没有做我想做的事。 __doc__
字符串有时包含方法/函数参数,但通常不包含。
Is there a way to introspect a function so that it shows me information on the arguments it takes (like number of args, type if possible, name of arguments if named) and the return value? dir()
doesn't seem to do what I want. The __doc__
string sometimes includes method/function arguments, but often doesn't.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
help(the_funcion)
应该为您提供所有这些信息。样本:
help(the_funcion)
should give you all of that information.Sample: