Python实现将不规范的英文名字首字母大写
时间:2020-11-08 12:48:52|栏目:Python代码|点击: 次
例如
输入:['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能有所帮助,如果有疑问大家可以留言交流。
栏 目:Python代码
本文地址:http://www.codeinn.net/misctech/20465.html