程序函数库可分为3种类型:静态函数库(static libraries)、共享函数库(shared libraries)、动态加载函数库(dynamically loaded libraries): 静态函数库,是在程序执行前就加入到目标程序中去了; 共享函数库,则是在程序启动的时候加载到程序中,它 ...
分类:
系统相关 时间:
2020-07-02 16:10:56
阅读次数:
85
from docx import Document from docx.shared import Cm w=Document(r'F:\word练习\qq.docx') run=w.tables[0].cell(0,0).paragraphs[0].add_run() run.add_pictur ...
分类:
其他好文 时间:
2020-07-02 11:57:14
阅读次数:
75
python内置函数-排列组合函数 product 笛卡尔积 (有放回抽样排列) permutations 排列 (不放回抽样排列) combinations 组合,没有重复 (不放回抽样组合) combinations_with_replacement 组合,有重复 (有放回抽样组合) 详细的参见 ...
分类:
编程语言 时间:
2020-07-01 14:13:21
阅读次数:
81
/Users/wangxue/Library/Application Support/Sublime Text 3/Installed Packages ...
分类:
系统相关 时间:
2020-07-01 14:13:05
阅读次数:
95
大家都知道like的效率很低,数据量大就会很慢,今天发现了一个内置函数instr()效率比like高 SELECT * FROM msg_list WHERE title LIKE '%涂山%' 可以替换为: SELECT * FROM msg_list WHERE INSTR(title,'涂山' ...
分类:
数据库 时间:
2020-07-01 14:11:02
阅读次数:
110
hiredis 的应用程序出错。 ./example-libevent: error while loading shared libraries: libhiredis.so.0.14: cannot open shared object file: No such file or directo ...
分类:
其他好文 时间:
2020-07-01 13:03:53
阅读次数:
97
library(package="car") data <- read.csv("C:\\users\\mike1\\desktop\\data\\RData\\hald水泥数据.csv", header=T, sep=",",fileEncoding = "utf-8", stringsAsFac ...
分类:
其他好文 时间:
2020-07-01 00:07:17
阅读次数:
74
一个很心酸的故事,公司了使用苹果电脑的只有我一个人,然后刚开始使用苹果电脑,开启了我饿自闭之旅,网上查到的一些方法是不可以使用的,所以我把正确的方法记录下来,给大家指个路 首先,说明下,本人的电脑是Mac2020 遇到问题的场景:和另一个人同时操作了同一个文件,然后导致冲突 问题1:由于系统更新,导 ...
分类:
系统相关 时间:
2020-06-30 20:37:45
阅读次数:
425
1 from pyquery import PyQuery as pq 2 import requests as rs 3 from docx import Document 4 from docx.shared import RGBColor 5 6 7 html = ''' 8 https:// ...
分类:
Web程序 时间:
2020-06-30 17:15:14
阅读次数:
117
https://blog.csdn.net/linyeban/article/details/53812641 在Eclipse中遇到The type XXX cannot be resolved. It is indirectly referenced from required .class f ...
分类:
其他好文 时间:
2020-06-29 16:56:58
阅读次数:
83