Python Forum
Paramter lists when shift+tab doesn't work - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Paramter lists when shift+tab doesn't work (/thread-5660.html)



Paramter lists when shift+tab doesn't work - sobrio1 - Oct-15-2017

Hello,

Say I have a Python function, func(), which I can't get parameters for. The functionality works; that is, I can apply func(start = 5), to get a result, but I have no idea what all the parameters are, and shift+tab does not work - it only returns *args, *kwargs (there is no docstring available).
How would you go about getting a parameter list so that you could use the function fully? Does Python have any tool/site/place besides shift+tab to see parameters on a function.
Thanks!

By the way, shift+tab works fine elsewhere - just not with this function.