Python Reference

Quick Reference

The Python string translate() method returns a string where specified characters are replaced as described in a dictionary or mapping table. If a character is not specified in the dictionary/table, the character will not be replaced.

#use a dictionary with ascii codes to replace 83 (S) with 72 (H):
mydict = {83:  72}
txt = "Hello Sam!"

print(txt.translate(mydict))

Note

Python string methods return new values, and DO NOT change the original string.

Output

Hello Ham!

Syntax

string.translate(table)

Parameters

ParameterDescription
tableEither a dictionary, or a mapping table describing how to perform the replace (required)

Python Notes:

  • The most recent major version of Python is Python 3; however, Python 2 is still in use and quite popular, although not being updated with anything other than security updates
  • Python uses new lines to complete a command, as opposed to other programming languages which often use semicolons or parentheses
  • Python relies on indentation, using whitespace to define scope, such as the scope of loops, functions, and classes; other programming languages often use curly-brackets for this purpose
  • Python string methods return new values, and DO NOT change the original string

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.