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() Is Not Defined

I'm a seventh grade programmer so I may be missing a lot of things in this program, but for my …

python undefined raw-input
What is the proper way to take a directory path as user input?

Below is a snippet of code I am trying to use to take a directory path as "raw input" from …

python raw-input
using map(int, raw_input().split())

Though I like python very much, When I need to get multiple integer inputs in the same line, I prefer …

python map raw-input
How to make a list from a raw_input in python?

So I am taking raw_input as an input for some list. x= raw_input() Where I input 1 2 3 4 How will …

python list python-2.7 raw-input
How to go back to first if statement if no choices are valid

How can I have Python move to the top of an if statement if no condition is satisfied correctly. I …

python if-statement raw-input
Hiding raw_input() password input

I want to hide my password but I don't know how. I have seen show="*" and also getpass but I …

python masking raw-input
How do I check if raw input is integer in python 2.7?

Is there a method that I can use to check if a raw_input is an integer? I found this …

python string python-2.7 integer raw-input
How to set a default editable string for raw_input?

I'm using Python 2.7's raw_input to read from stdin. I want to let the user change a given default …

python input raw-input
How to set time limit on raw_input

in python, is there a way to, while waiting for a user input, count time so that after, say 30 seconds, …

python python-2.7 timeout raw-input
EOFError in Python script

I have the following code fragment: def database(self): databasename="" host="" user="" password="" try: self.fp=file("detailing.dat","rb") …

python pickle raw-input eoferror