def process(items): total = 0 for v in items: if v > 0: total += v return total