Top "Cyrillic" questions

For questions about code that deals with any kind of Cyrillic (including the original Cyrillic script and the modern Cyrillic alphabets, such as the Russian alphabet).

Python — check if a string contains Cyrillic characters

How to check whether a string contains Cyrillic characters? E.g. >>> has_cyrillic('Hello, world!') False &…

python string cyrillic
How to get ASCII cyrillic character code in Python?

ord() returns unicode code, and I need ascii. >>> s = "Йог" #cyrillic >>> for char in s: ... …

python unicode ascii cyrillic ord