Skip to content

Instantly share code, notes, and snippets.

Created June 10, 2015 15:57
Show Gist options
  • Save anonymous/7749ab028c4165afeaae to your computer and use it in GitHub Desktop.
Save anonymous/7749ab028c4165afeaae to your computer and use it in GitHub Desktop.
TEXT = 'i sprawdź co ciekawego dla Ciebie dzieje się w najbliższym czasie.'
MAP = (
('ą', ''),
('ć', ''),
('ę', 'ę'),
('ł', ''),
('ń', ''),
('ó', ''),
('ś', ''),
('ź', 'Ĺş'),
('ż', 'Ěź'),
)
text = TEXT
for c, x in MAP:
if x:
text = text.replace(x, c)
print text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment