def double_star(**kwargs):
for key, value in kwargs.items():
print(f"{key}: {value}")
double_star(name="John", age=25, gender="Male")
def single_star(*args):
for arg in args:
print(arg)
single_star("apple", "banana", "cherry")