华为机考入门python3--(13)牛客13-句子逆序

分类:列表

知识点:

  1. 列表逆序(和字符串逆序是一样的)      my_list[::-1]

题目来自【牛客】

华为机考入门python3--(13)牛客13-句子逆序_第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 软件工程小施同学

你可能感兴趣的:(华为机试机考,华为,算法)