On Oct 31, 1:33 am, "Seid Mohammed" <[EMAIL PROTECTED]> wrote: > Greetins all > 1. I can easily run python file from a comand prompt just typing > "python filname.py". > How can I do this from the python IDLE shell > 2. How to create EXE in python. > thanks all for making me to be more copnfortable with python > Seid M > > -- > "RABI ZIDNI ILMA"
normally you open the file in IDLE and "RUN" it. not call it like from CMD -or- use execfile() funtion: >>> execfile(filename, globals, locals) -- http://mail.python.org/mailman/listinfo/python-list