24 lines
391 B
Python
24 lines
391 B
Python
# The leetspeak dictionary, containing common substitutions
|
|
leetspeak = {
|
|
"a": "4",
|
|
"b": "8",
|
|
"c": "(",
|
|
"e": "3",
|
|
"g": "6",
|
|
"i": "1",
|
|
"l": "1",
|
|
"o": "0",
|
|
"s": "5",
|
|
"t": "7",
|
|
"z": "2",
|
|
"h": "#",
|
|
"s": "$",
|
|
"a": "&",
|
|
"j": ")",
|
|
"v": "^",
|
|
"w": "^",
|
|
"a": "@",
|
|
"l": "!",
|
|
"i": "!",
|
|
"x": "%"
|
|
} |