You could create a set containing the cyrillic letters and just check each character of the string:
cyrillic_letters = {....} # fill it with the cyrillic letters
def has_cyrillic(text):
for c in text:
if c in cyrillic_letters:
return True
return False