Exercise: Create dictionary with function

Define a function called create_dict that returns a dictionary based on two given parameters. Ensure the function returns the expected results.
# create function here...
def create_dict(
print(create_dict('name', 'Bob')) # expected output: { 'name': 'Bob' } print(create_dict(10, 99)) # expected output: { 10: 99 }
Python
Setting up Python environment...
Output