I would like to know if it is possible to select python scripts and have them run one after the other. So the first python script runs and gives me the desired result, after this I want another script to run. Example:
Imagine we have 3 scripts: code1.py
, code2.py
and code3.py
.
Now I would like to create something that would allow me to run first code1.py
, then after that is done run code2.py
and finally code3.py
.
Is this possible?
P.S- Apologies for not displaying an attempt, I don't have sufficient coding knowledge to be able to do an attempt.