All problems
MediumFunctions
**kwargs — keyword arguments
Write `describe(**info)` that prints each key=value pair on its own line.
- #functions
- #**kwargs
Sample input
describe(name="Aarav", age=22)
Sample output
name=Aarav age=22
kwargs.py
Output
Press "Run code" to execute.
