listing10-5.py 84 B

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