什么是xlutils 是一个提供了许多操作修改excel文件方法的库; 属于python的第三方模块 xlrd库用于读取excel文件中的数据,xlwt库用于将数据写入excel文件,修改用xlutils模块; xlutils库也仅仅是通过复制一个副本进行操作后保存一个新文件,像是xlrd库和xlw ...
分类:
编程语言 时间:
2020-07-26 01:45:47
阅读次数:
72
编译安装ImageMagick-7.0.8 1、起源 转码服务器报identify: no decode delegate for this image format 日志错误 2、安装ImageMagick-7.0.8 目前这个版本的包适合公司的业务ImageMagick-7.0.8-68.tar ...
分类:
其他好文 时间:
2020-07-26 01:45:32
阅读次数:
75
mysql时间转换和事务 涉及的函数 date_format(date, format) 函数,MySQL日期格式化函数date_format() unix_timestamp() 函数 str_to_date(str, format) 函数 from_unixtime(unix_timestamp ...
分类:
数据库 时间:
2020-07-25 23:30:39
阅读次数:
136
java的jdk1.5开始引用了对字符串的格式化处理,类似于C语言的printf("%d,%d",a,b);,对数据的处理非常方便,之所以有这样的方式输出,很多人说是为了抢夺C语言的开发人员市场,到底是不是,不得而知。 1 public static void main(String[] args) ...
分类:
编程语言 时间:
2020-07-25 09:48:48
阅读次数:
59
Given an array of words and a width maxWidth, format the text such that each line has exactly maxWidth characters and is fully (left and right) justif ...
分类:
其他好文 时间:
2020-07-25 09:35:28
阅读次数:
71
reg_test.cpp内容如下: #include <vector> #include <fmt/format.h> #include <console_color.h> #include <re2/re2.h> using namespace re2; using namespace std; ...
分类:
其他好文 时间:
2020-07-24 21:48:06
阅读次数:
101
在Flask中,添加路由有两种方式:(一般情况下都是用第一种方式) 第一种:常见的装饰器模式 @app.route("/") def index(): return "Hello World" 通过这种方式,将rule与视图函数对应起来 第二种:通过阅读装饰器模式添加路由的源码发现 def rout ...
分类:
其他好文 时间:
2020-07-23 23:29:38
阅读次数:
138
在Python程序中,我们把单个或多个字符用单引号、双引号和三引号包围起来就表示一个字符串。 s1 = 'hello, world!' s2 = "hello, world!" # 以三个双引号或单引号开头的字符串可以折行 s3 = """ hello, world! """ print(s1, s ...
分类:
其他好文 时间:
2020-07-23 15:43:36
阅读次数:
70
原文:https://bbs.csdn.net/topics/340010860 路径:Tools -> Display Preferences(显示参数选择) -> Format -> Table -> Modify -> Fill -> Fill color -> More Colors -> ...
分类:
其他好文 时间:
2020-07-22 15:58:22
阅读次数:
176
参数 标准参数:不会随着JDK版本的变化而变化 java -version/-help -X参数: 非标准参数:随着JDK版本变化而变化 Xint:解释执行 Xcomp:编译执行 Xmix:混合执行 -XX参数 boolean类型 -XX:[+/-]name:启动或停止 -XX: +UseSeria ...
分类:
其他好文 时间:
2020-07-22 01:56:56
阅读次数:
68