一、报错如下所示:
解决办法:
with open时 ,将wb改成w
with open(report_path, "wb") as f:
改成:
with open(report_path, "w") as f:
二、无法生成html格式文件问题
- 点击Edit Configurations
一、报错如下所示:
解决办法:
with open时 ,将wb改成w
with open(report_path, "wb") as f:
改成:
with open(report_path, "w") as f:
二、无法生成html格式文件问题