Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
raw_input('Please type in your full name') ... John Smith
文字列をリストに分割し (ここで' 'は分割文字として使用します)、逆にして、再び元に戻します。
' '
s = raw_input('Please type in your full name') ' '.join(reversed(s.split(' ')))