Untitled

mail@pastecode.io avatarunknown
python
2 months ago
146 B
1
Indexable
Never
def is_cyrillic_letter(char):
    """Check if the given character is a Cyrillic letter."""
    return 'а' <= char <= 'я' or 'А' <= char <= 'Я'