So i have a python script that takes an argument of a location and runs the script accordingly.
I want to speed up the process so rather than waiting for each run to finish and then entering the second argument (location).
Is there a way to enter all arguments in a text file like so:
C:\a\b
C:\a\c
C:\a\d
and then get python to run each one individually?
Thank you.