例如
输入:['adam', 'LISA', 'barT'],输出:['Adam', 'Lisa', 'Bart']。
方法一
def wgw(x):
return [x[0].upper(),x[1:].lower()]
map(wgw,['adam','LISA','barT'])
方法二
def wgw1(x):
return x.capitalize()
map(wgw1,['adam','LISA','barT'])
方法三
map(lambda x:x.capitalize(),['adam','LISA','barT'])
总结
以上就是Python实现将不规范英文名字首字母大写,其他小写的规范名字的全部内容,希望本文的内容对大家学习或者使用python能有所帮助,如果有疑问大家可以留言交流。