python import click @click.command() @click.option('--name', help='Your name', required=True) def greet(name): try: click.echo(f'Hello, {name}!') except Exception as e: click.echo(f'Error: {str(e)}') if __name__ == '__main__': greet() shell pip install click shell python script.py --name Alice


上一篇:
下一篇:
切换中文