1 2 3 4 5 6
from sys import argv if len(argv) == 2: print("hello,", argv[1]) else: print("hello, world")