I have a dictionary of synonyms:
synonym = {"this": ["this", "same"],
"all": ["all", "any", "*"],
"alluptolastyear": ["alluptolastyear", "uptolastyear"],
"dekadbefore": ["dekadbefore", "lastdekad", "formerdekad", "precedingdekad"],
"dekadafter": ["dekadafter", "nextdekad", "followingdekad"],
"yearbefore": ["yearbefore", "lastyear", "formeryear"],
"monthbefore": ["monthbefore", "lastmonth", "precedingmonth"]}
Each array stores synonyms, referenced through the keys. I read two strings from an XML file, and try to compare them.
For example:
"this"and"same"are equal (synonyms)- '"lastyear"' and '"formeryear"' are equal (synonyms)
"all"and"nextdekad"are different- of course, each key value is found in its corresponding array, so each key is a synonym of its array's strings.
Could some help me to write a pythonic comparison of those strings using the synonym dictionary?


lastyeara synonym forformeryear? – Dominic Kexel Oct 12 '12 at 8:25