标签: python
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)
答案 0 :(得分:15)
它是一种类型注释:https://docs.python.org/3/library/typing.html
你应该可以删除它。