脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - Python - Python写的英文字符大小写转换代码示例

Python写的英文字符大小写转换代码示例

2019-11-23 17:43junjie Python

这篇文章主要介绍了Python写的英文字符大小写转换代码示例,本文例子相对简单,本文直接给出代码实例,需要的朋友可以参考下

几行代码的小工具,用于进行如下转换

TRANSACTIONS ON CLOUD COMPUTING

=》

Transactions On Cloud Computing

复制代码代码如下:

orig = 'TRANSACTIONS ON CLOUD COMPUTING'
splited = orig.split(' ')
handled = ''
for word in splited:
    word = word[0] +  word[1:].lower()
    handled += (' ' + word)
handled = handled[1:]
print handled
#handled is 'Transactions On Cloud Computing'

延伸 · 阅读

精彩推荐