from xlutils.copy import copy import xlrd # 加载已存在的xls old_workbook = xlrd.open_workbook('guoshun.xlsx') # 将已存在的excel拷贝进新的excel new_workbook = copy(old ...
分类:
其他好文 时间:
2021-03-17 14:13:15
阅读次数:
0
电脑常用快捷键 切换页面 : alt +tab 全选:ctrl + a 打开菜单界面 : windows 关闭界面/结束游戏界面 :alt+F4 复制:ctrl +c 粘贴:ctrl+v 大部分软件撤回撤销 :ctrl+z 保存代码:ctrl+s ( 写一行保存一行) 永久删除软件,在根本上删除 s ...
分类:
其他好文 时间:
2021-03-17 14:12:56
阅读次数:
0
进入IDEA 的工具下会发现有四个选项 其中第一个就是创建一个新的Java工程 第二个是导入一个工程 第三个是打开一个已有工程比如打开Eclipse项目 check out from version control 通过服务器的项目地址导入项目,可以是gethub上的项目 同时需要说明IDEA的项目 ...
分类:
其他好文 时间:
2021-03-17 14:09:51
阅读次数:
0
AtCoder Beginner Contest 195 Editorial Problem A - Health M Death(opens new window) 只要检查 \(H\equiv 0\) 即可. Time complexity is \(\mathcal{O}(1)\). Spac ...
分类:
其他好文 时间:
2021-03-17 14:07:28
阅读次数:
0
原文:https://reactjs.org/blog/2019/08/15/new-react-devtools.html Introducing the New React DevTools We are excited to announce a new release of the Reac ...
分类:
其他好文 时间:
2021-03-17 14:05:07
阅读次数:
0
前言 nginx : version 1.18 server 配置参数 这里只给 server 参数 server { listen 443 ssl; server_name test.com; # 这里填域名,可以是二级域名,可以是正则域名 ssl_certificate "/srv/nginx/ ...
分类:
其他好文 时间:
2021-03-17 14:03:08
阅读次数:
0
Sql Server提供的计算列是一个虚拟的列,通常情况下该列的值是由表中的其它列计算得出的。默认情况下,它不占用磁盘容量,因为这些计算列的值都是根据我们指定的表达式动态计算出来的,只有查询的时候才会被计算出来。然而,使用了PERSISTED关键字的计算列,会将表达式的计算结果值写入到磁盘中,进一步 ...
分类:
数据库 时间:
2021-03-17 14:01:24
阅读次数:
0
我们可以将图片的加载写成一个promise,一旦加载完成,promise的状态就发生变化 const preloadImage = function (path) { return new Promise(function (resolve, reject) { const image = new ...
分类:
其他好文 时间:
2021-03-16 14:11:15
阅读次数:
0
删除原来的版本 rm -f /usr/bin/php 引用你想要的版本 ln -sf /www/server/php/74/bin/php /usr/bin/php ln命令用来为文件创建连接,连接类型分为硬连接和符号连接两种,默认的连接类型是硬连接。如果要创建符号连接必须使用"-s"选项。注意:符 ...
分类:
Web程序 时间:
2021-03-16 14:09:10
阅读次数:
0
代码 //base64编码 String a = new String(base64.encode(text.getBytes("UTF-8"))); String b = new String(Base64.encodeBase64(text.getBytes("UTF-8"))); String ...
分类:
Web程序 时间:
2021-03-16 14:04:57
阅读次数:
0