I am learning Maya Python as part of the art school program but since the teacher is not very competence so I am looking for help with this homework.
So the task is basically: Create 2 dictionaries and constrains the values of one key to the other. But I should see one driver and one driven object per key
def ConstraintDict():
category = {
"brand",
"model",
"year"
}
car = {
"Mazada",
"626",
"1994"
}
brand should be driven by Mazda
model should be driven by 626
year driven by 1994
I have been trying to search for a solution and haven't found a proper answer yet.
Please help me out with this