Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What I want isn't a full reversal of letters but just the order of inputted data.

For example:

raw_input('Please type in your full name')

... John Smith
How do I output this as Smith John?
share|improve this question
4  
Tiny note: you tagged as python-3.x but you used raw_input...did you mean to use input? – nneonneo Oct 9 '12 at 6:42

3 Answers

up vote 8 down vote accepted

Simply split the string into a list (here I use ' ' as the split character), reverse it, and put it back together again:

s = raw_input('Please type in your full name')
' '.join(reversed(s.split(' ')))
share|improve this answer
@nneonneo.. do we need that ' ' for splitting.. I am getting the same output with split() – Rohit Jain Oct 9 '12 at 6:42
3  
This is more explicit. split() splits by all whitespace. – nneonneo Oct 9 '12 at 6:42

A small variation on @nnenneo's answer, but this is what I would have done:

>>> s = raw_input('Please type in your full name: ')
Please type in your full name: foo bar
>>> ' '.join(s.split(' ')[::-1])
'bar foo'
share|improve this answer

You could do it like this:

name = raw_input('Please type in your full name')
name = name.split()
print name[-1] + ',', ' '.join(name[:-1])

This is in Python 2, but since you're using raw_input, I think that's what you want. This method works if they enter a middle name, so "Bob David Smith" becomes, "Smith, Bob David".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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