题解 | #单词倒排#
单词倒排
https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836
import re print(*re.findall('[a-zA-Z]+',input())[::-1])
正则一行解决,有种学成归来的感觉,通过re.findall找出所有的单词,匹配模式用[a-zA-Z]+,倒序用[::-1],带空格输出用*,完美
单词倒排
https://www.nowcoder.com/practice/81544a4989df4109b33c2d65037c5836
import re print(*re.findall('[a-zA-Z]+',input())[::-1])
正则一行解决,有种学成归来的感觉,通过re.findall找出所有的单词,匹配模式用[a-zA-Z]+,倒序用[::-1],带空格输出用*,完美
相关推荐