Importing Libraries

To import a library in python you need to specify it in the beginning of the script file :
import “library” example pprint is a library for an easy reading output.

to see where that library is install :
“library”.__file__

 

Leave a Comment