Posts by Eduardo Nomura • 1 point
1 post
-
0
votes2
answers2868
viewsA: How to know which libraries are being used in a python project?
=help("modules") Use the native function HELP. In the Python prompt menu type: help("modules") and the program will return the list of all modules installed in alphabetical order. Remarks: 1) The…