摘要:
python运行时类型检查 参数类型检查装饰器设计 请紧跟我的思路来设计这个可以检查函数参数类型的装饰器 1.1 装饰器带参数 首先,这个装饰器必须允许传入参数,这样,我们才能在使用装饰器修饰函数的时候指定参数的类型 @typecheck(int, int) def add(x, y): retur 阅读全文
摘要:
import pyttsx3 engine = pyttsx3.init() engine.say('Sally sells seashells by the seashore.') engine.runAndWait() # 必须使用这行代码才能发出语音 engine.say('语音合成开始') 阅读全文