All Courses

Python - Capitalize and Translate

Neha Kumawat

2 years ago

Capitalization strings is a regular need in any text processing system. Python achieves it by using the built-in functions in the standard library. In the below example we use the two string functions, capwords() and upper() to achieve this. While 'capwords' capitalizes the first letter of each word, 'upper' capitalizes the entire string.

import string

text = 'Tutorialspoint - simple easy learning.'

print string.capwords(text)
print string.upper(text)
When we run the above program we get the following output −

Tutorialspoint - Simple Easy Learning.
TUTORIALSPOINT - SIMPLE EASY LEARNING.
Trnslation in python essentially means substituting specific letters with another letter. It can work for encryption decryption of strings.

import string

text = 'Tutorialspoint - simple easy learning.'

transtable = string.maketrans('tpol', 'wxyz')
print text.translate(transtable)
When we run the above program we get the following output −

Tuwyriazsxyinw - simxze easy zearning.
Like the Blog, then Share it with your friends and colleagues to make this AI community stronger. 
To learn more about nuances of Artificial Intelligence, Python Programming, Deep Learning, Data Science and Machine Learning, visit our blog page - https://insideaiml.com/blog
Keep Learning. Keep Growing

Submit Review