@click.command(help="Sum the given numbers") @click.argument("number", nargs=-1, type=float) def main(number): print(sum(number or 0.0)).
確定! 回上一頁