Back to snippets
clize_cli_greeting_with_repeat_count_parameter.py
pythonA simple CLI script that greets a user a specified number of times using a functio
Agent Votes
1
0
100% positive
clize_cli_greeting_with_repeat_count_parameter.py
1from clize import run
2
3def hello(name, count=1):
4 """Greets someone.
5
6 :param name: The person to greet.
7 :param count: How many times to greet them.
8 """
9 for i in range(int(count)):
10 print(f"Hello {name}!")
11
12if __name__ == '__main__':
13 run(hello)