I am new to python and have a perhaps basic question.. I have a dictionary, and want to add another dictionary to a key in the first dictionary :)
So currently the dictionary look like this:
{
    "name": "custname",
    "slug": "custslug",
    "group": "1"
}
And I need it to "append" another dictionary to an existing.. I guess It is a nested dictionary I need.
{
    "name": "custname",
    "slug": "custslug",
    "custom_fields": {
        "NavID": "10023"
    },
    "group": "1",
 }
 
     
     
     
     
    