rng = range(100, 160, 10) dict = {i:i/100 for i in rng}
Exercise 17-c
Using dict comprehension and a conditional argument create a dictionary from the current dictionary where only the key:value pairs with value above 2000 are taken to the new dictionary.