python程序如下
"""
if __name__ == "__main__":
# 支持文件夹批量导入
folder = 'tmp'
#pathname = os.path.join(os.path.abspath('.'), folder)
# 也支持单个文件的转换
pathname = r'C:\Users\caiml\Desktop\PPT模板\创意活力\答辩PPT模板1.pptx'
pdfConverter = PDFConverter(pathname)
pdfConverter.run_conver()
"""
此程序已经注释,但运行时依然报错
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 5085-5086: truncated \UXXXXXXXX escape
解决方案:
将程序中
pathname = r'C:\Users\caiml\Desktop\PPT模板\创意活力\答辩PPT模板1.pptx'
改为
pathname = r'C:\\Users\\caiml\\Desktop\\PPT模板\\创意活力\\答辩PPT模板1.pptx'