Blog

What is the output of the below code?

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)