import sys
print (sys.platform)
print (2 ** 100)
raw_input( )
I am using Python 3.1 and can't get the raw_input to "freeze" the dos pop-up. The book I'm reading is for 2.5 and I'm using 3.1
What should I do to fix this? Thanks.
I am using Python 3.1 and can't get the raw_input to "freeze" the dos pop-up. The book I'm reading is for 2.5 and I'm using 3.1 What should I do to fix this? Thanks. |
|||||||||
|
|
|
|||||
|
|
This works in Python 3.x and 2.x:
|
||||
|
|
|
As others have indicated, the From your description, I think you've saved a Use a command-promptWhen you're looking at the folder window that contains your Python program, hold down shift and right-click anywhere in the white background area of the window. The menu that pops up should contain an entry "Open command window here". (I think this works on Windows Vista and Windows 7.) This will open a command-prompt window that looks something like this:
To run your program, type the following (substituting your script name):
...and press enter. (If you get an error that "python" is not a recognized command, see http://showmedo.com/videotutorials/video?name=960000&fromSeriesID=96 ) When your program finishes running, whether it completes successfully or not, the window will remain open and the command-prompt will appear again for you to type another command. If you want to run your program again, you can press the up arrow to recall the previous command you entered and press enter to run it again, rather than having to type out the file name every time. Use IDLEIDLE is a simple program editor that comes installed with Python. Among other features it can run your programs in a window. Right-click on your |
|||
|
|