reverseargs

简介

1
2
3
4
5
import sys
print(sys.argv)
args = sys.argv[1:]
args.reverse()
print(' '.join(args))