Give a method that sums all the numbers in a list. The method should be able to skip elements that are not numbers. So, sum([1, 2, 3]) should be
list
sum([1, 2, 3])
sum([x for x in list if isinstance(x, (int, long, float))])