tools
xsophiax
这个作者很懒,什么都没留下…
展开
-
git extensions linux工具(sh)未发现
git,git extension原创 2022-07-21 17:50:18 · 1480 阅读 · 1 评论 -
C/C++ 取整函数ceil(),floor()
使用floor函数。floor(x)返回的是小于或等于x的最大整数。如: floor(10.5) == 10 floor(-10.5) == -11使用ceil函数。ceil(x)返回的是大于x的最小整数。如: ceil(10.5) == 11 ceil(-10.5) ==-10floor()是向负无穷大舍入,floor(-10.5) == -11;ceil()是向正无穷大舍入,ceil(-10.5) == -10fix朝零方向取整,如fix(-1...原创 2021-07-08 10:38:50 · 935 阅读 · 1 评论 -
Python学习笔记之wkhtmltopdf使用
在使用wkhtmltopdf时出现如下问题: from main import WKhtmlToPdf, wkhtmltopdfModuleNotFoundError: No module named 'main'而直接看网上,存在好多类似的问题,我看了源码,发现其不仅存在一些问题,还仅支持到Python2.x;如果要支持Python 3.x还需要修改一些东西;1. init文件修改api临时永不到,先注释掉了。from .main import WKhtmlToPdf...原创 2020-12-31 15:37:57 · 2588 阅读 · 0 评论 -
python学习笔记之graphviz画图(二)
1. python学习笔记之graphviz画图(一)2. python学习笔记之graphviz画图(二)9. 示例from graphviz import Digraphg = Digraph('G', filename='hello.gv')g.edge('Hello', 'World')g.view()10.示例from graphviz import Graphg = Graph('G', filename='process.gv', engine='.原创 2020-10-23 15:07:07 · 1004 阅读 · 0 评论 -
python学习笔记之graphviz画图(一)
Python下graphviz使用示例:# 库引入from graphviz import Digraph1. 示例g = Digraph('G', filename='angles.gv')g.attr(bgcolor='blue')with g.subgraph(name='cluster_1') as c: c.attr(fontcolor='white') c.attr('node', shape='circle', style='filled', fil..原创 2020-10-23 14:56:28 · 2223 阅读 · 0 评论 -
python学习笔记之pyinstaller failed to execute script问题
File "<frozen importlib._bootstrap>", line 983, in _find_and_load使用pyinstaller -D demo.py打包完成后,在dist\Demo目录下,在cmd下执行demo.exe,就能发现问题track。发现是pyecharts问题,是pyinstaller对此库支持不好。...原创 2020-05-26 17:48:58 · 2125 阅读 · 0 评论 -
Python学习笔记之(三) matplotlib.pyplot
1. 正态分布import numpy as npimport matplotlib.pyplot as pltmu, sigma = 100, 15x = mu + sigma * np.random.randn(10000)# the histogram of the datan, bins, patches = plt.hist(x, 50, density=1, fac...原创 2020-04-14 15:36:30 · 327 阅读 · 0 评论 -
Python学习笔记之(一) matplotlib.pyplot
1.快速生成曲线# Pyplotimport matplotlib.pyplot as pltplt.plot([1, 2, 3, 4])plt.ylabel('some numbers')plt.show()import matplotlib.pyplot as pltplt.plot([1, 2, 3, 4], [1, 4, 9, 16])plt.ylabel...原创 2020-04-14 14:55:38 · 273 阅读 · 0 评论 -
python学习笔记之两个list之间的差异(差集、交集、并集、查重)
案例1:list_a = ['1', '2', '3', '4']list_b = ['1', '2', '3', '5']# diff# list_a对应list_b的差集diff_a_b = set(list_a).difference(set(list_b))print('list_a对应list_b的差集:', diff_a_b)# list_b对应list_a的差集...原创 2020-04-14 11:07:19 · 3723 阅读 · 0 评论 -
Python/C++调用DLL中获取运行路径问题
一般在C++的DLL的库中,多使用GetModuleFileName接口来获取当前DLL的执行路径,是非常nice的处理,但是如过把用Python调用DLL,就会发现其在DLL中用GetModuleFileName获取的路径与C++获取的不一样; 调试发现Python调用DLL是把DLL加载Python的根目录下运行,这个时候使用DLL创建临时目录,或获取其运行路径就...原创 2020-03-30 10:41:11 · 1196 阅读 · 0 评论 -
VC2019 - Debug时候出现 Script Error An error has occurred in the script on this page. 解决办法
VS2019 Debug时候出现 Script Error An error has occurred in the script on this page. 解决办法原创 2019-10-22 15:24:59 · 2072 阅读 · 0 评论 -
VC2019 - error LNK2026: module unsafe for SAFESEH image 解决
在使用VS2019引用外部lib可能会出现如下错误显示:解决方式1:解决方式2:原创 2019-10-22 15:11:06 · 1237 阅读 · 0 评论 -
在pycharm中设置pylint控制代码质量
1.安装pylintpip install pylint2.配置pycharmprogram: pylint安装路径(请根据自己pc的pylint.exe配置,..\Scripts\pylint.exe)arguments:--output-format=parseable --disable=R --disable=C0102,C0103,C0111,C0301,C0302,C...原创 2019-10-14 15:52:40 · 578 阅读 · 0 评论