Thank you for the help!!!:)
On 25 jun, 10:32, Nick Craig-Wood <[EMAIL PROTECTED]> wrote:
> evidentemente.yo <[EMAIL PROTECTED]> wrote:
> > On 24 jun, 14:32, Nick Craig-Wood <[EMAIL PROTECTED]> wrote:
> > > Probably what you want is this...
>
> > > from subprocess import call
>
> > > rc = call(["
evidentemente.yo <[EMAIL PROTECTED]> wrote:
> On 24 jun, 14:32, Nick Craig-Wood <[EMAIL PROTECTED]> wrote:
> > Probably what you want is this...
> >
> > from subprocess import call
> >
> > rc = call(["mypath/myfile.exe",arg1,arg2])
> >
> > rc will contain the exit status
> >
> > See the subprocess
Hey, thank you very much!!!:D
Would it matter if my .exe doesn't return any value? would it return
like an "ok" or something???
On 24 jun, 14:32, Nick Craig-Wood <[EMAIL PROTECTED]> wrote:
> evidentemente.yo <[EMAIL PROTECTED]> wrote:
> > Hi, i am trying to call a .exe from my .py file, i have f
evidentemente.yo <[EMAIL PROTECTED]> wrote:
> Hi, i am trying to call a .exe from my .py file, i have found the exec
> function, but i'm not sure of how to use it:S
>
> would it be f.e.:
>
> execl (mypath/myfile.exe,myfile,arg1,arg2,...)
>
>
>
> Another question is, when i call my .e
On Jun 24, 10:50 am, "evidentemente.yo" <[EMAIL PROTECTED]>
wrote:
> Hi, i am trying to call a .exe from my .py file, i have found the exec
> function, but i'm not sure of how to use it:S
>
> would it be f.e.:
>
> execl (mypath/myfile.exe,myfile,arg1,arg2,...)
>
>
>
> Another question is, when