标签 python 下的文章

import pyttsx3
engine = pyttsx3.init()
rate = engine.getProperty('rate')
engine.setProperty('rate', 125)
voices = engine.getProperty('voices')
engine.setProperty('voice', voices[41].id)  #最好的发音:0、7、11、33、41
engine.say('world')
engine.say('wall')
engine.say('work')
engine.runAndWait()

Python不能有空的代码块,pass通常是“待办事项”占位符。
当您需要处理不想做任何事情的情况时使用它,例如:

try:
    os.mkdir(r'C:\FooBar')
except FileExistsError:
    pass
else:
    os.mkdir(r'C:\FooBar\Baz')
finally:
    print('Wazoooo')