これを行うためのpythonicの方法は何ですか?
これから:'これは試してみる文字列です'これに:'文字列を試してくださいaはこれです'
私の最初の推測は:
for w in 'This is a string to try'.split(' ')[::-1]:
print w,
ただし、str.split()は許可されていません。それから私はこれを思いついた:
def reverse_w(txt):
tmp = []
while (txt.find(' ') >= 0):
tmp.append(txt[:txt.find(' ')])
txt = txt[txt.find(' ')+1:]
if (txt.find(' ') == -1):
tmp.append(txt)
return tmp[::-1]