[Newbie] Python as a frontend to other apps.

Patrick H. Mullins pmullins at gatecom.com
Sun Jan 23 17:28:38 EST 2000


> import os
> password="secretstuff"
> infile="test.idea"
> outfile="test.zip"
> os.system("idea -dk %(password) %(infile) %(outfile)")

Found out that I just had to move a few things around.  :-)

os.system("idea -dk %s %s %s" % (password, infile, outfile))

Thanks for the help!

Patrick Mullins
pmullins at gatecom.com





More information about the Python-list mailing list