Python写的英文字符大小写转换代码示例
(编辑:jimmy 日期: 2024/11/17 浏览:3 次 )
几行代码的小工具,用于进行如下转换
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'
下一篇:Python自动化构建工具scons使用入门笔记