题解 | #句子逆序#
句子逆序
https://www.nowcoder.com/practice/48b3cb4e3c694d9da5526e6255bb73c3
while True: try: # 输入句子 并拆分 ss=input().split() # 逆序并打印元素 print(*reversed(ss)) except: break
或者:
print(' '.join(input().split()[::-1]))
句子逆序
https://www.nowcoder.com/practice/48b3cb4e3c694d9da5526e6255bb73c3
while True: try: # 输入句子 并拆分 ss=input().split() # 逆序并打印元素 print(*reversed(ss)) except: break
print(' '.join(input().split()[::-1]))
相关推荐