题解 | #句子逆序#
句子逆序
http://www.nowcoder.com/practice/48b3cb4e3c694d9da5526e6255bb73c3
Python 代码实现
while True:
try:
string = list(input().split())
print(' '.join(string[::-1]))
except:
break
句子逆序
http://www.nowcoder.com/practice/48b3cb4e3c694d9da5526e6255bb73c3
while True:
try:
string = list(input().split())
print(' '.join(string[::-1]))
except:
break
相关推荐