This commit is contained in:
PingFeng Luo 2022-01-04 19:02:22 +08:00
parent 73271d6ba4
commit f7b44da375

View File

@ -49,8 +49,9 @@ def process_line(
word_syllables = word_syllables * new_char_syllables_num
for pre_index in range(word_syllables_num):
for expand_index in range(new_char_syllables_num):
word_syllables[pre_index * new_char_syllables_num
+ expand_index] += " "
word_syllables[
pre_index * new_char_syllables_num + expand_index
] += " "
+ str(char_syllables[expand_index])
word_syllables_num *= new_char_syllables_num