I have dictionary in format "site_mame": (side_id, frequency):
d=[{'fpdownload2.macromedia.com': (1, 88),
  'laposte.net': (2, 23),
  'www.laposte.net': (3, 119),
  'www.google.com': (4, 5441),
  'match.rtbidder.net': (5, 84),
  'x2.vindicosuite.com': (6, 37),
  'rp.gwallet.com': (7, 88)}]
Is there a smart way to filter dictionary d by value so that I have only those positions, where frequency is less than 100? For example:
d=[{'fpdownload2.macromedia.com': (1, 88),
  'laposte.net': (2, 23),
  'match.rtbidder.net': (5, 84),
  'x2.vindicosuite.com': (6, 37),
  'rp.gwallet.com': (7, 88)}]
I don't want to use loops, just looking for smart and efficient solution...
 
     
     
     
    