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 ?

link|improve this question

62% accept rate
I'm not sure what you are asking? Are you asking how to substitute a python variable into a call to os.system? – TokenMacGuy Jun 13 '11 at 2:01
@TokenMacGuy Yeah . I want to put A.shp where A = "Parking" , that is A is a string variable containing Parking – Puck Jun 13 '11 at 2:07
As I remember, you can NOT use PIPE operation in os.system. You may also need to notice this. – winterTTr Jun 13 '11 at 2:21
feedback

3 Answers

up vote 0 down vote accepted

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.

link|improve this answer
feedback

If you just want to make substitutions in the string you pass to os.system (or any other function), you can use string interpolation:

>>> a = "foo"
>>> "abc %s def" % a
'abc foo def'
>>> b = "apples"
>>> "hello %s %s" % (a, b)
'hello foo apples'
>>> "hello %(c)s %(d)s %(c)s" % {'c': a, 'd': b}
'hello foo apples foo'
>>> 

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.

link|improve this answer
feedback

You can use the interpolation method (a.k.a. %) or the new (available on py2.6+) format method

You should prefer the format method

'./script {filename} --option > {output}'.format(filename=myfile, output='o.txt')

or

'./script {0} --option > {1}'.format(myfile, 'out.txt')

for python 2.7 or 3.1+ you don't need use numbers inside {}.

format is more readable than './script %s --xyz' % name and offers more formatting options (link above).

link|improve this answer
I tried a very crude method and it worked like a charm . a = "data/" b= "python " +" unzip.py " + "-z " + a + matches.group() + " -o " + " data/ " os.system(b) – Puck Jun 13 '11 at 3:30
but using + to strings is slow and creates new strings in the operation. You should use a template string and replace the file name every time as I said – JBernardo Jun 13 '11 at 3:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.