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?
What I want isn't a full reversal of letters but just the order of inputted data.For example:
How do I output this as Smith John?
|
||||
|
Simply split the string into a list (here I use
|
|||||||
|
|
A small variation on @nnenneo's answer, but this is what I would have done:
|
|||
|
|
|
You could do it like this:
This is in Python 2, but since you're using |
|||
|
|
python-3.xbut you usedraw_input...did you mean to useinput? – nneonneo Oct 9 '12 at 6:42