python中from math import exp,cos as tt,bb这样的代码哪里错误了
from math import exp as tt,cos as bb
这样使用逗号
as只能一次as一个,不能同时
将后面的逗号bb删除掉就不会报错