After doing more research I found that all source code is compiled to byte code but not written to files. Imports are expensive processes, so it makes more sense to write their compiled bytecode into files (w/i the pycache directory) for future use (until their source is altered). The rest remain in memory to be discarded after the program ends.

