关于List迭代的问题
def format_name(s): return s[:1].upper()l+s[1:].lower() print map(format_name, ['adam', 'LISA', 'barT'])
在format_name函数里面我没有进行对s的循环,为什么结果会循环了List里面的所有元素?
def format_name(s): return s[:1].upper()l+s[1:].lower() print map(format_name, ['adam', 'LISA', 'barT'])
在format_name函数里面我没有进行对s的循环,为什么结果会循环了List里面的所有元素?
2016-11-12
举报