I (Python newby) am working with ArcGIS and want to have a list of all its tools with their full descriptions. I already got all tool names, using arcpy.ListTools(). But to get the full description is a problem for me.
To get that description I must use a statement such as this one (for the tool 'EmergingHotSpotAnalysis_stpm'):
arcpy.EmergingHotSpotAnalysis_stpm.__doc__
But how do I put a variable 'toolname' (for all tool names) in this statement?
arcpy.+toolname+.__doc__
does not work.