ImportError模块导入问题
问题描述:
from pptx.util import lnches
报错:
Import Error: cannot import name 'leches' from 'pptx.util'
请问该怎么解决这问题呢?
答
代码中导入语句写错了吧,应该是from pptx.util import lnches,而报错信息中说的是无法从pptx.util导入'leches' 。检查一下代码,如不对,改成Inches即可。