>>> list = [1,2,3,4] >>> sum(list) 10 >>> l = ['a',1,'f',3.2,4] >>> sum([i for i in l if isinstance(i, int) or isinstance(i, float)]) 8.2