String Python Tutorial

from string  import maketrans
table = maketrans('cs', 'kz')
print 'this is a test'.translate(table)