利用map()函数,把用户输入的不规范的英文名字,变为首字母大写,其他小写的规范名字。输入:['adam', 'LISA', 'barT'],输出:['Adam', 'Lisa', 'Bart']:
实现代码:
- L = ['adam', 'LISA', 'barT']
- def normalize(x):
- return str.capitalize(x)
- R = list(map(normalize, L))
- print(R)
其他更好的方式,留言分享,相互学习交流
本站欢迎任何形式的转载,但请务必注明出处,尊重他人劳动成果
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-18-899-1.html
转载请注明: 文章转载自:爱思资源网 http://www.aseoe.com/show-18-899-1.html