python import click @click.command() def hello(name): if __name__ == '__main__': hello() python import click @click.command() @click.argument('name') def hello(name): if __name__ == '__main__': hello() python your_script.py Jack