We use all the time python's import mechanism to import modules and variables and other stuff..but, is there anything that works as export? like:
we import stuff from a module:
from abc import *
so can we export like?:
to xyz export *
or export a,b,c to program.py
I know this question isn't a typical type of question to be asked here..but just in curiosity..I checked over the python console and there is nothing that exists as 'export'..maybe it exists with some different name..?