Hi,
I want to make a script that will call the run() func of some other scripts who's name the main script will read from a file.
i.e, the main script will:
1. read the file
2. for each <name> in the file:
3. try to call <name>.run()
i.e, if i have a text file:
one
two
the main script will read the text file and then try to call one.run() and two.run()
I can't use the os module since i need the return value of that function.
I want to make a script that will call the run() func of some other scripts who's name the main script will read from a file.
i.e, the main script will:
1. read the file
2. for each <name> in the file:
3. try to call <name>.run()
i.e, if i have a text file:
one
two
the main script will read the text file and then try to call one.run() and two.run()
I can't use the os module since i need the return value of that function.
Comment