#----------------------------------------------------------------------- # usethree.py #----------------------------------------------------------------------- import stdio import sys # Accept three names as command-line arguments. Write a "hi" message # to standard output that contains the three names in reverse order. stdio.write('Hi, ') stdio.write(sys.argv[3]) stdio.write(', ') stdio.write(sys.argv[2]) stdio.write(', and ') stdio.write(sys.argv[1]) stdio.writeln('.') #----------------------------------------------------------------------- # python usethree.py Alice Bob Carol # Hi, Carol, Bob, and Alice.