Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running Python script from IDLE on Windows 7 64 bit

I'm trying to figure out how to successfully use Python 2.7.1 on windows 7.
So far, I'm having to use the shell (IDLE) to create scripts and then run them from the cmd prompt. I feel this is slowing down the learning process and I was wondering if there was a way to run it from IDLE (I'm not able to create a pathway, so whenever i try to open or import a file i get an error) or some other program/text editor perhaps?

Any help would be appreciated! I'm probably just doing something wrong.

like image 303
user820080 Avatar asked Jun 28 '11 22:06

user820080


People also ask

How do I run a .py file in IDLE?

To execute a file in IDLE, simply press the F5 key on your keyboard. You can also select Run → Run Module from the menu bar. Either option will restart the Python interpreter and then run the code that you've written with a fresh interpreter.

How do I run a Python script in Windows 7?

Type cd PythonPrograms and hit Enter. It should take you to the PythonPrograms folder. Type dir and you should see the file Hello.py. To run the program, type python Hello.py and hit Enter.

How do I open Python IDLE in Windows?

To open Idle with an initial file to edit, select the Python file in an operating system window, right click (Windows) or control-click (Mac), to get a pop-up window to select how to open the file. On Windows, the line for Idle requires you to open a sub-menu. Select Idle for the latest version.


Video Answer


2 Answers

  1. Run IDLE. You will be presented with the "Python Shell" window and a >>> prompt.
  2. Click File, New Window. You will be presented with an "Untitled" window for editing a script.
  3. Enter your script in the "Untitled" window.
  4. In the "Untitled" window, select Run, Run Module (or press F5) to run your script.
  5. A dialog "Source Must Be Saved. OK to Save?" appears. Click OK.
  6. In the Save As dialog:
    a. Browse to a directory to save your script.
    b. Enter a filename.
    c. Click Save.
  7. The "Python Shell" window will display the output of your script.
  8. Edit script and press F5 as needed to re-run your script.

Edit

I don't normally use IDLE, and didn't immediately see a way to configure parameters to the module, so one suggestion is to switch IDEs. Since you are using Windows 7, the pywin32 extensions contains the PythonWin IDE and its Run command has a dialog to allow command line parameters to be entered.

like image 141
Mark Tolonen Avatar answered Sep 22 '22 15:09

Mark Tolonen


I think you have in mind the following function:

execfile(...)

execfile(filename[, globals[, locals]])

Read and execute a Python script from a file.
The globals and locals are dictionaries, defaulting to the current
globals and locals.  If only globals is given, locals defaults to it.

Note:

This only applies to python 2.x, python 3 does not have execfile(), instead see What is an alternative to execfile in Python 3?

like image 31
Mayer Goldberg Avatar answered Sep 19 '22 15:09

Mayer Goldberg