build_profile(**details) that accepts any number of keyword arguments and returns them as a plain dict, unchanged.build_profile(name="Rahul", age=28)
{'name': 'Rahul', 'age': 28}Each keyword argument becomes a key/value pair in the dict.
**details collects keyword arguments into a dict automatically.
Just return that dict.