os.system('python manage.py ogrinspect data/Parking.shp Parking --srid=4326 --mapping --multi > output.txt')
Variable A = "Parking" .
How can I substitute A everywhere os.system() has Parking ?
Variable A = "Parking" . How can I substitute A everywhere os.system() has Parking ?
| |||||||
feedback
|
|
Whenever you call os.system with a string you're invoking a shell and get shell expansion regardless of whether you want it or not. It can lead to unexpected security issues when you start inserting variables (particularly user-supplied variables). Instead of using os.system, checkout subprocess.call() or subprocess.check_call() and pass it a tuple or list of arguments. When you pass it a list or tuple it doesn't need to start a shell to process the arguments. By using a list or a tuple you can easily have your variables in the arguments. | |||
|
feedback
|
|
If you just want to make substitutions in the string you pass to
You can't (as in some other languages, like PHP, Ruby or TCL), name arbitrary variables in the current scope using string interpolation; variables must be enumerated, and passed in as a tuple or dict. | |||
|
feedback
|
|
You can use the interpolation method (a.k.a. You should prefer the format method
or
for python 2.7 or 3.1+ you don't need use numbers inside
| |||||
feedback
|