为什么前面的不行 后面的可以了 哪位大能 能解释下 为什么 # for x in L: 后就可以了呢
L=['adam','LISA','barT']
def MZgf(x):
for x in L:
return x[0].upper()+x[1:].lower()
print map(MZgf,L)
L=['adam','LISA','barT']
def MZgf(x):
# for x in L:
return x[0].upper()+x[1:].lower()
print map(MZgf,L)