Python -- 大小写转换


#小写转大写 strs = 'abcd' strs = strs.upper() print u'abcd小写转大写:', strs #大写转小写 strs = 'ABCD' strs = strs.lower() print u'ABCD大写转小写:', strs #首字母大写 strs = 'how are you' print u'首字母大写:', ' '.join([a.capitalize() for a in strs.split(' ')])


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM