Forum Archive

How do I list available modules for import?

Robert Buckley

I haven't used Pythonista for at least a year and can't recall what I used to type at the console command line to cause the system to list all modules available for import. What sequence of symbols will do that?

cvp

@Robert-Buckley Try

help('modules')
Robert Buckley

Why, thank you very much. The single quotation marks is what I was missing. RESOLVED