赞
踩
分类:列表
知识点:
列表逆序(和字符串逆序是一样的) my_list[::-1]
题目来自【牛客】
- def reverse_sentence(sentence):
- # 将输入的句子分割
- words = sentence.split()
- # 将单词逆序排列
- words = words[::-1]
- # 将单词用空格连接起来,并添加一个空格在最后
- reversed_sentence = ' '.join(words)
- return reversed_sentence
-
- input_str = input().strip()
- print(reverse_sentence(input_str))
by 软件工程小施同学
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。