Spaces:
Running
Running
File size: 1,608 Bytes
1a75086 f9e5028 1a75086 f9e5028 1a75086 f9e5028 1a75086 f9e5028 9e96240 f99f689 1a75086 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
from ukrainian_word_stress import Stressifier, StressSymbol
stressify = Stressifier(stress_symbol=StressSymbol.CombiningAcuteAccent)
def sentence_to_stress(sentence):
stressed = stressify(sentence).replace(StressSymbol.CombiningAcuteAccent, "+")
new_stressed = ""
start = 0
last = 0
while True:
plus_position = stressed.find("+", start)
if plus_position != -1:
new_stressed += (
stressed[last : plus_position - 1] + "+" + stressed[plus_position - 1]
)
start = plus_position + 1
last = start
else:
new_stressed += stressed[last:]
break
return new_stressed
if __name__ == "__main__":
sentence = "Кам'янець-Подільський - місто в Хмельницькій області України, центр Кам'янець-Подільської міської об'єднаної територіальної громади і Кам'янець-Подільського району."
print(sentence_to_stress(sentence))
sentence = "Привіт, як тебе звати?"
print(sentence_to_stress(sentence))
sentence = "АННА - український панк-рок гурт"
print(sentence_to_stress(sentence))
sentence = "Не тільки в Україні таке може бути."
print(sentence_to_stress(sentence))
sentence = "Н тльк в крн тк мж бт."
print(sentence_to_stress(sentence))
sentence = "Н тльк в крн тк мж бт."
print(sentence_to_stress(sentence))
|