s = 'something else'
sum_all = reduce(lambda x,y: x + y, filter(lambda x: not x == 's', s))
print(sum_all)