def demo(**kwargs):
for name, color in kwargs.items():
print(f’{name} is of {color} color and size’)
demo(name=”Box”, color=”Red”, size=5)
def demo(**kwargs):
for name, color in kwargs.items():
print(f’{name} is of {color} color and size’)
demo(name=”Box”, color=”Red”, size=5)