Re: running a c program from a python script
Great stuff, thanks, it works. -- http://mail.python.org/mailman/listinfo/python-list
Re: running a c program from a python script
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 as