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






dir() and help() functions interactive aids

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

1.Document string