johnclare wrote:
> Help - I'm (very) new to python. I want to run run a c executable from
> a python script - how do I do this?
>
> Many thanks for your help,
> j
>
generally:
import os
os.execl(program_location)
Look in os, Process management for further details. The next time
you ask, you really should mention your OS and Python versions; the
fiddley details differ.--Scott David Daniels [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list
