How do you list the functions in a module? Technology Community › Category: Python › How do you list the functions in a module? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Use the dir() method to list the functions in a module: import some_module print dir(some_module)