102209/how-do-i-use-raw-input-in-python-3
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 Python 2.5 and I'm using Python 3.1
What should I do to fix this?
Starting with Python 3, raw_input() was renamed to input().
The raw_input() function reads a line from input (i.e. the user) and returns a string by stripping a trailing newline. This page shows some common and useful raw_input() examples for new users. Please note that raw_input() was renamed to input() in Python version 3
raw_input() was renamed to input() in Python 3. Another example method, to mix the prompt using print, if you need to make your code simpler. x= int(raw_input()) -- Gets the input number as a string from raw_input() and then converts it to an integer using int()
For Python 3, try doing this: import urllib.request, ...READ MORE
can u give an example? READ MORE
The reduce() function in Python takes in ...READ MORE
I am trying to implement method overloading ...READ MORE
suppose you have a string with a ...READ MORE
You can also use the random library's ...READ MORE
Syntax : list. count(value) Code: colors = ['red', 'green', ...READ MORE
Enumerate() method adds a counter to an ...READ MORE
The first part starts with grep , followed by ...READ MORE
Delete the List and its element: We have ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.