题解 | #句子逆序#
句子逆序
https://www.nowcoder.com/practice/48b3cb4e3c694d9da5526e6255bb73c3
while True:
    try:
        result = ' '.join(str(x) for x in input().split()[::-1])
        print(result)
    except:
        break
句子逆序
https://www.nowcoder.com/practice/48b3cb4e3c694d9da5526e6255bb73c3
while True:
    try:
        result = ' '.join(str(x) for x in input().split()[::-1])
        print(result)
    except:
        break
相关推荐