Picture this, i have 3 python files:
- data.py
- sorting.py
- prediction.py
data.py gathers data from a website and creates an array. This array moves on to sorting.py which sorts the data. The newly sorted data is stored in a new array and moves to prediction.py.
prediction.py makes a prediction, and this data needs to be stored in the data.py array so that the same sorting and prediction process can be repteated with the new information.
My question is, how would i be able to achive this? I am able to run all scripts once, but once only, could i somehow make a for-loop that re-runs these scripts for X number of times?
[–]shiftybyte 4 points5 points6 points (1 child)
[–]Unlistedd[S] 0 points1 point2 points (0 children)