dir() and help() functions interactive aids : Help « Development « Python
- Python
- Development
- Help
dir() and help() functions interactive aids

#dir() and help() functions interactive aids for working
#with large modules like os:
import os
dir(os)
help(os)
Related examples in the same category