in php, i can easily call functions created on other files by just adding the file as include
i have 3 python files - file1,file2,file3
file1 is main and when executed it will only initiate a function which will only require scripts on file2 OR file3
how can i include (or any other ways of importing) file2 and file3 on file1?
import did the trick



