Python Dictionary Question
for example,
d = {"Math":100, "Art":90, "English":70}
class Student():
subject = none
score = none
Q: how to process all entries in the dictionary if you decide to use something other than the key to search it (perhaps by something in the value which may be a string or a class object)