alphabet = "abcdefghijklmnopqrstuvwxyz'. "
text="The sunset sets at twelve o'clock."
text_lowercase =text.lower().translate(str.maketrans("", "", '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~ '))
lst_of_numbers = []
for chrt in text_lowercase:
lst_of_numbers.append(str(alphabet.find(chrt)+1))
print (' '.join(lst_of_numbers))
20 8 5 19 21 14 19 5 20 19 5 20 19 1 20 20 23 5 12 22 5 15 3 12 15 3 11
Есть шкала 1,2,3,4,......11, 12
Есть на ней события (1 значение = 1 событие): 1, 3, 5, 6, 8, 8.7, 9.5, 10, 12
Результат:
Вопрос в чем?