目标:基于python环境和pandas包,对数据取绝对值处理,应该如何实现呢? 很简单,如果你通过pandas获得的DataFrame对象.. 阅读更多
python数据处理:对.xlsx中的空数据行进行填充0到特定行数
主要目标:使用 python 和 pandas,对excel中的空数据行进行填充,比如我需要1900行数据,而原数据不足1900行,那么将不.. 阅读更多
python出现EOL while scanning string literal错误
意思是引号没有闭合,比如本次导致错误的语句是: folder_path = 'C:/Users 实际正确的语句是: folder_path .. 阅读更多
python遍历文件夹excel并输出总行数的代码
如下所示,首先需要安装pandas和numpy以及openpyxl库 pip install pandas pip install open.. 阅读更多
IndexError: index 1 is out of bounds for axis 0 with size 1
python程序中执行报错: Traceback (most recent call last): File "XXXXXXXXXXXXXX.. 阅读更多
TypeError: Unsupported type in write()解决办法
准备使用xlsxwriter把数据写入到excel里面,报错: Traceback (most recent call last): Fil.. 阅读更多
Python中如何print一些变量值
Python中如何print一些变量值
opencv出现Can't parse 'center'. Sequence item with index 0 has a wrong type问题
程序报错退出,错误提示: M = cv2.getRotationMatrix2D(eyesCenter, angle, scale) Typ.. 阅读更多
The python code to batch modify the image resolution and fill the redundant area of the image
This code is for beginners to use, we refer to a lot of code on the In.. 阅读更多
基于python的图像批量修改分辨率且周边填充空白的代码
小白写的,小白用,也是参考了网上的很多代码,感谢大佬们的贡献。 这个代码的目标是,把所有图片全部分辨率修改为128*128,在修改的同时并不.. 阅读更多