Just out of curiosity, how would one go about un-importing
a module?
For example, you import a couple of modules like this:
import x, y, z
Then say for some reason you don't want and / or need module y
to be included anymore, how would you only un-import
module y
without affecting modules x
or z
?
Thank you in advance.