Re: [Tutor] question re: executing exe files with arguments

2007-05-20 Thread Martin Walsh
Hey Janani, Janani Krishnaswamy wrote: > Hi! > I am having trouble executing an exe file with 3 arguments within a > python script. Right now I have something like this: > > os.system(r'"1/2/3/program 1/2/3/argument1 1/2/3/argument2"') Without an error message, or traceback, this is difficult t

Re: [Tutor] question re: executing exe files with arguments

2007-05-18 Thread Luke Paireepinart
Janani Krishnaswamy wrote: > Hi! > I am having trouble executing an exe file with 3 arguments within a > python script. Right now I have something like this: > > os.system(r'"1/2/3/program 1/2/3/argument1 1/2/3/argument2"') > > I was trying it with a raw string because of the /'s within it. I'm n

[Tutor] question re: executing exe files with arguments

2007-05-18 Thread Janani Krishnaswamy
Hi! I am having trouble executing an exe file with 3 arguments within a python script. Right now I have something like this: os.system(r'"1/2/3/program 1/2/3/argument1 1/2/3/argument2"') I was trying it with a raw string because of the /'s within it. I'm not sure of any other approaches. Any a