def format_name(s):
s.lower()
s[0].upper()
return s
print map(format_name, ['adam', 'LISA', 'barT'])
想把首字母大写其他字母小写 为什么还是原样?
Caballarii
相关分类