让用户输入几个数字,然后把用户输入的数字掉个顺序打印(也就是反序)?使用内置reversed()函数或者使用a[-1::-1]都可以。
参考代码:
list1 = input('请输入一组数字,用空格隔开:').split()print(' '.join(reversed(list1)))