Home » Python String | translate() method with Examples

Python String | translate() method with Examples

by Online Tutorials Library

Python String translate() Method

Python translate() method a string in which each character has been mapped through the given translation table. We can use maketrans() method to create a translation map from character-to-character mappings in different formats.

Signature

Parameters

table : A translation table.

Return

It returns a string.

Let’s see some examples of translate() method to understand it’s functionality.

Python String translate() Method Example 1

Output:

Hellp jgvgtppint  

Next TopicPython Strings

You may also like