Results 2 issues of Vimal Mishra

suppose we need to find price of a house with 2 baths and 3 bhk .its price is lower than with 2 baths and 2 bhk. One more suggestion: if...

`def sum_of_numbers(list_of_num,filter_func=None): if filter_func==None: return sum(list_of_num) else: return sum(filter_func(list_of_num))`