在words_pron_dict:str上的冒号是什么意思?我在python 2.7上遇到语法错误.是python 3吗?我怎么用呢?
class TextToSpeech: CHUNK = 1024 def __init__(self, words_pron_dict:str = 'cmudict-0.7b.txt'): self._l = {} self._load_words(words_pron_dict)
Lucero.. 19
这是一种类型注释:https://docs.python.org/3/library/typing.html
你应该可以删除它.
这是一种类型注释:https://docs.python.org/3/library/typing.html
你应该可以删除它.