
Python
半片饼干
这个作者很懒,什么都没留下…
展开
-
python资料
Python官方文档Python documentationTutorial 入门指南英文版 The Python Tutorial 中文版 Python入门指南 Language Reference Python 语言参考手册英文版 The Python Language Reference 中文版 Python语言参考手册--极客...原创 2018-07-14 15:46:53 · 4368 阅读 · 6 评论 -
PyInstaller打包PyQt代码生成exe
使用PyInstaller产生如下错误"This application failed to start because it could not find or load the Qt platform plugin "windows"in "".Reinstalling the application may fix this problem."在Anaconda3的安装...原创 2018-08-08 13:53:18 · 276 阅读 · 0 评论 -
取余运算与取模运算 (Complementation vs Modulo )
概念对于整数a,b来说,取模运算或者求余运算的方法要分如下两步:1.求整数商:c = a / b2.计算模或者余数:r = a - (c * b)区别在于:第一步对c值的小数取向的不同取余运算(Complementation):在计算商值向0方向舍弃小数位取模运算(Modulo):在计算商值向负无穷方向舍弃小数位 例如a (Dividend) b (D...原创 2018-09-29 14:27:36 · 2255 阅读 · 0 评论 -
图片批量转换为C语言数组工具
经常需要使用emWin的GUI Builder工具把图片转换为C语言数组,但这个工具每次只能添加一个图片文件,无法批量处理。就用Python写了一个批量转换的小工具。# encoding:utf-8import osimport shutilimg_out_c = list()def img_to_c_string(image_path, img_name): wit...原创 2019-06-11 15:51:21 · 3325 阅读 · 0 评论