I'm trying to add dictionary with new key to another dictionary but I don't know how to code in python
For example, if I have two dictionary like this:
dic_A = {"A": a, "B": b}
dic_C = {"E": e, "F": f}
And I want to add dic_C to dic_A with new key "C" as nested dictionary like this:
dic_A = {"A": a, "B": b, "C": {"E": e, "F": f}}