vote up 3 vote down star

How can I implement the following in python?

#include <iostream>

int main() {
   std::string a; 
   std::cout <<  "What is your name? ";
   std::cin >> a; 
   std::cout << std::endl << "You said: " << a << std::endl;
}

Output:

What is your name? Nick

You said: Nick

flag

4 Answers

vote up 7 vote down check

Call

name = raw_input('What is your name?')

and

print 'You said', name
link|flag
You might want to do "name.rstrip()" or just "name.strip()" to remove whitespace. – monkut Jan 8 at 0:40
Feel free to post that as an answer and i'll upmod it – Nick Stinemates Jan 13 at 6:20
vote up 3 vote down

Look at the print statement and the raw_input() function.

Or look at sys.stdin.read() and sys.stdout.write().

When using sys.stdout, don't forget to flush.

link|flag
vote up 3 vote down
print "You said:", raw_input("What is your name? ")

EDIT: as Swaroop mentioned, this doesn't work (I'm guessing raw_input flushes stdout)

link|flag
This would print "You said What is your name?" – Swaroop C H Jan 9 at 6:27
@Swaroop: You're right, my bad :) – orip Jan 9 at 14:33
vote up 1 vote down

The simplest way for python 2.x is

var = raw_input()
print var

Another way is using the input() function; n.b. input(), unlike raw_input() expects the input to be a valid python expression. In most cases you should raw_input() and validate it first. You can also use

import sys
var = sys.stdin.read()
lines = sys.stdin.readlines()
more_lines = [line.strip() for line sys.stdin]

sys.stdout.write(var)
sys.stdout.writelines(lines+more_lines)
# important
sys.stdout.flush()

As of python 3.0, however, input() replaces raw_input() and print becomes a function, so

var = input()
print(var)
link|flag

Your Answer

Get an OpenID
or

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