Coding India

🧠 Python Challenge:
Without running the code, what will this print? 👇

def test_func(a, *args, **kwargs):
print(a, args, kwargs)

test_func(5, 10, 15, name="Coding India")

Comment your answer below! Let’s see how many of you get it right! 🎯

2 months ago | [YT] | 2



@Shantanu_lrnr

5 (10, 15) {"name":"Coding India"}

2 months ago | 0