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-
raw_input
This works in Python 3.x and 2.x:
# Fix Python 2.x. try: input = raw_input except NameError: pass print("Hi " + input("Say something: "))