i try to make an error prevention, in which I look if their is a double definition.
For example:
json1 = {
"a": "python is good",
"b": "i like java",
"c": "python is good"
}
I want to iterate over the values and find out if I got the same value at another key.
To get a message like: "ERROR: double definition"
Is their a good way to compare these?