Guest User

Untitled

a guest
Nov 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import inspect
  2.  
  3. def test(a,b,c=None):
  4. # Don't think you need it, but do it for sake of completeness
  5. return (a,b,c)
  6.  
  7. d = inspect.getargspec(test)
  8. print d.args
Add Comment
Please, Sign In to add comment