Что выведет код?

from functools import reduce

funcs = [str.title, lambda x: x*2]

print(reduce(lambda acc, f: f(acc), funcs, 'hello'))