这样做的pythonic方法是什么?
从这个:'This is a string to try' 到 this:'try to string a is This'
我的第一个猜测是:
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]