Include command counterpart in python

Miscellaneous Forums/General Discussion/Include command counterpart in python

Maybe it's a very simple thing but I couldn't find it in the online tutorials or python manual / refence.

So what is the "include" command in python. I want to work with multiple source files.

Thanks.

you have "import", which imports modules or some particular object(s) which lives in one.

import example
example.run()


or
from example import run
run()


pythons import/module system is pretty cool. definitely read up on it.

Oh, that's great thanks. I knew import but I confused it with Blitzmax's import command.