题解 | #单词倒排#
单词倒排
https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836
import re
sentence=input()
word=re.split('\W',sentence)
word.reverse()
new_sentence=' '.join(word)
print(new_sentence)
单词倒排
https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836
import re
sentence=input()
word=re.split('\W',sentence)
word.reverse()
new_sentence=' '.join(word)
print(new_sentence)
相关推荐