I have a list of commands that I iterate through
lst = ['commandone', 'commandtwo', 'commandthree']
for command in lst:
subprocess.run(command)
Does anyone know specifically how subprocess handles these commands when passed in a loop like this? Do they execute simultaneously or does the subprocess module wait on each command to finish before the other begins? What would be the best way to determine this?