Python - 大写和翻译

大写字符串是任何文本处理系统的常规需求。 Python 通过使用标准库中的内置函数来实现它。 在下面的示例中,我们使用了两个字符串函数,capwords()upper() 来实现这一点。 'capwords' 将每个单词的第一个字母大写,而 'upper' 将整个字符串大写。

import string

text = 'Tutorialspoint - simple easy learning.'

print string.capwords(text)
print string.upper(text)

当我们运行上面的程序时,得到以下输出 −

Tutorialspoint - Simple Easy Learning.
TUTORIALSPOINT - SIMPLE EASY LEARNING.

Python 中的翻译本质上是指将特定字母替换为另一个字母。 它可以用于字符串的加密解密。

import string

text = 'Tutorialspoint - simple easy learning.'

transtable = string.maketrans('tpol', 'wxyz')
print text.translate(transtable)

当我们运行上面的程序时,得到以下输出 −

Tuwyriazsxyinw - simxze easy zearning.