As I am developer of Python
and works at different different technologies.
So sometimes I really feel that there should be a method
which can tell both the KEYWORD ARGUMENT
and POSITIONAL ARGUMENTS
of any method.
Example:
response(url="http://localhost:8080/core",data={"a":"12"},status=500)
Response have many keyword/positional arguments
like url,data, status
.
There can be many more keyword arguments of response method which I do not mentioned in above example. So I want to know all total number of keyword argument of a method.
So if anyone knows any method in Python which can tell about keyword argument please share it.