Discuss / Python / imaima

imaima

Topic source

def normalize(name):

    return name.capitalize()

L1 = ['adam', 'LISA', 'barT']

L2 = list(map(normalize, L1))

print(L2)

from functools import reduce

def prod(L):

    def fn(x,y):

        return x*y

    return reduce(fn,L)

print('3 * 5 * 7 * 9 =', prod([3, 5, 7, 9]))

if prod([3, 5, 7, 9]) == 945:

    print('测试成功!')

else:

    print('测试失败!')


  • 1

Reply