diff options
author | HombreLaser <sebastian-440@live.com> | 2023-10-23 17:53:38 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-10-23 17:53:38 -0600 |
commit | 1279ff3378a6b225d5b6001e61a121c2a7631830 (patch) | |
tree | a2d673839f5fe03ec27ec0fbe76979ca6384a4c0 | |
parent | 936e8c677fe9992dda1a666fdf3b958a5eb932db (diff) |
Move cyrillic alphabet to different file
-rw-r--r-- | alphabet.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/alphabet.py b/alphabet.py new file mode 100644 index 0000000..7a4816e --- /dev/null +++ b/alphabet.py @@ -0,0 +1,4 @@ +CYRILLIC_ALPHABET = ['I', 'А', 'Б', 'В', 'Г', 'Д', 'Е', 'Ë', 'Ж', 'З', + 'И', 'Й', 'К', 'Л', 'М', 'Н', 'О', 'П', 'Р', 'С', + 'Т', 'У', 'Ф', 'Х', 'Ц', 'Ч', 'Ш', 'Щ', 'Ъ', 'Ы', + 'Ь', 'Э', 'Ю', 'Я'] |