I have a dictionary like this;
csvDict[key] = {'delivery': delivery, 'tanksystemid': tanksystemid}
I'm 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?