Pythontr
を使用して文字の翻訳/音訳 (コマンドのようなもの) を行う方法はありますか?
Perl での例は次のとおりです。
my $string = "some fields";
$string =~ tr/dies/eaid/;
print $string; # domi failed
$string = 'the cat sat on the mat.';
$string =~ tr/a-z/b/d;
print "$string\n"; # b b b. (because option "d" is used to delete characters not replaced)