I want to run a python script inside another script's for-loop every loop. The below code works but only for the first loop ("run_this_script.py" only executes when i=1). How can I get it to run every iteration?
for i in range (1,10)
import run_this_script.py