How to view all functions inside that particular module? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to view all functions inside that particular module?

12th Jul 2016, 1:32 AM
sundar
sundar - avatar
2 Answers
+ 1
I mean to ask, Is there any function through with I can view the functions list in a specific module?
13th Jul 2016, 4:09 PM
sundar
sundar - avatar
+ 1
Guys I got answer to this question. we can view the list of functions of imported module within python itself. import re for i in direct('re'): print(i) now I imported regex module 're' using dir() function I can view all the functions within a module that passed as argument. To make the functions readable I used for loop and printed them out one by one. hope this info would be useful for everyone who need to do research on all functions within imported module.
17th Jul 2016, 6:25 PM
sundar
sundar - avatar