How do I list available modules for import?
-
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?
-
@Robert-Buckley Try
help('modules')
-
Why, thank you very much. The single quotation marks is what I was missing. RESOLVED