Top "Raw-input" questions

The raw input API provides a stable and robust way for applications to accept raw input from any HID (Human Interface Devices), including the keyboard and mouse.

raw_input and timeout

I want to do a raw_input('Enter something: .'). I want it to sleep for 3 seconds and if there's …

python loops raw-input
Masking user input in python with asterisks

I am trying to mask what the user types into IDLE with asterisks so people around them can't see what …

python passwords masking raw-input
Python: Problem with raw_input reading a number

unfortunately raw_input is not doing what I need it to do. What I am trying to do is get …

python raw-input
Tab completion in Python's raw_input()

i know i can do this to get the effect of tab completion in python sure. import readline COMMANDS = ['extra', …

python raw-input
Use of input/raw_input in python 2 and 3

I would like to set a user prompt with the following question: save_flag is not set to 1; data will …

python python-3.x input python-2.x raw-input
How to get Coordinates of Touchscreen Rawdata using Linux

We have a 3m microtouch display. It's connected to my Debian system via USB and recognized as human interface (hid). …

linux linux-kernel driver touchscreen raw-input
Using wxPython to get input from user

Suppose I need to replace the raw_input function in the following code with a wxPython dialog box that asks …

python wxpython user-input raw-input
How to let a raw_input repeat until I want to quit?

Say I want to use raw_input like this: code = raw_input("Please enter your three-letter code or a blank …

python raw-input
how to use a raw_input as argument in a function in python 3

I'm trying to write a simple program with python 3 for practice. What I want to do is draw a function …

python-3.x variables input arguments raw-input
Python raw_input ignore newline

Is there a way to ignore newline characters in data entered through raw_input? I am trying to use raw_…

python raw-input