# python3 HolaMundoCLI.py your_name_here from sys import argv if len(argv) > 1: name = argv[1] else: name = "World" print("hello " + name + "!")