I have dictionary like this;
  csvDict[key] = {'delivery': delivery, 'tanksystemid': tanksystemid}
Im trying to do a condition check like;
tanksystemid=100
for dic in csvDict.values():
                if tanksystemid == dic['tanksystemid']:
                    key of csvDict?
How can i get the key of the csvDict?
 
    