views:

3163

answers:

1
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.

+11  A: 

raw_input() was renamed to input()

From http://docs.python.org/dev/py3k/whatsnew/3.0.html

balpha
Just beat me, +1 and deleting mine :-)
paxdiablo