vote up 1 vote down star

I am familiar with the input() function, to read a single variable from user input. Is there a similar easy way to read two variables?

I'm looking for the equivalent of:

scanf("%d%d", &i, &j); // accepts "10 20\n"

One way I am able to achieve this is to use raw_input() and then split what was entered. Is there a more elegant way?

This is not for live use. Just for learning.

flag

2 Answers

vote up 7 vote down check

No, the usual way is raw_input().split()

In your case you might use map(int, raw_input().split()) if you want them to be integers rather than strings

Don't use input() for that. Consider what happens if the user enters

import os;os.system('do something bad')

link|flag
2  
Note that starting with Python 3.0, raw_input was renamed to input. (And to get the original behavior of input, use eval(input).) – Stephan202 Oct 19 at 11:09
...that should be "apply eval to the output of input". – Stephan202 Oct 19 at 11:12
Yes, the obvious behaviour in 3 is much better, but I wish they had dropped some warnings into 2.6 about those changes. I guess I need to study the upgrade guide – gnibbler Oct 19 at 11:23
1  
no it should be int(input(), if you do eval(input()) in python3 you get a very dangerous backdoor because the user will be able to execute any python statement (even os.system) with your user's rights. – dalloliogm Oct 19 at 11:39
1  
@dialloliogn: read again. I made a general remark about how to get Python 2's input behavior in Python 3. – Stephan202 Oct 19 at 14:00
vote up 1 vote down

You can also read from sys.stdin

import sys

a,b = map(int,sys.stdin.readline().split())
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.