在juoyter notebook中直接通过df输出DataFrame时,显示的样式为表格样式,通过sytle可对表格的样式做一些定制,类似excel的条件格式。 df = pd.DataFrame(np.random.rand(5,4),columns=['A','B','C','D']) s = ...
分类:
其他好文 时间:
2020-07-14 18:13:51
阅读次数:
71
public class A { //定义委托 public delegate void ReturnHandler(string s); //定义事件 public event ReturnHandler returnData; } public class B { A a = new A(); ...
分类:
其他好文 时间:
2020-07-14 13:54:04
阅读次数:
61
This week we are reading about the beginnings of Islam, and the simultaneous expansion of Christianity in the West. You may notice that the two overla ...
分类:
其他好文 时间:
2020-07-14 13:02:46
阅读次数:
101
题目来源:https://leetcode-cn.com/problems/string-rotation-lcci/ 字符串轮转。给定两个字符串s1和s2,请编写代码检查s2是否为s1旋转而成(比如,waterbottle是erbottlewat旋转后的字符串)。 示例1: 输入:s1 = "wa ...
分类:
其他好文 时间:
2020-07-14 01:03:07
阅读次数:
85
Vue 实现 双向数据绑定 主要采用:数据劫持结合“发布-订阅”模式的方式,通过Object.defineProperty()的 set 和 get,在数据变动时发布消息给订阅者触发监听。 Object.defineProperty( )是用来做什么的?它可以来控制一个对象属性的一些特有操作,比如读 ...
分类:
其他好文 时间:
2020-07-13 21:34:06
阅读次数:
77
前驱图和程序执行 程序顺序执行 顺序性 封闭性 可再现性 顺序性:指处理机严格地按照程序所规定的顺序执行,即每一操作必须在下一操作开始之前结束;封闭性:程序在封闭的环境下运行,即程序运行时独占全机资源,资源的状态(除初始状态外)只有本程序才能改变它,程序一旦开始执行其执行结果不受外界因素影响;可再现 ...
分类:
系统相关 时间:
2020-07-13 18:27:01
阅读次数:
66
BFS广度遍历代码模板 /** 广度遍历代码模板 */ public class TestBFS { public List<List<Integer>> bsf(TreeNode root) { // 如果节点为空 if (root == null) { return null; } List<L ...
分类:
其他好文 时间:
2020-07-13 18:26:06
阅读次数:
70
<div> <span id="copyMy" onmousedown="copyFn(event)" oncontextmenu="doNothing()">右键复制</span> </div> <script> function doNothing() { // 取消右键弹出的菜单 window ...
分类:
其他好文 时间:
2020-07-13 13:42:18
阅读次数:
73
最近需要将Mysql的数据库导出一份Word的文档出来,本文记录调研后几个可用的工具和方法: 阿里云DMS工具导出 适用于存储在阿里云RDS服务中的Mysql数据库 导出格式支持:Word、Excel、PDF 缺点:免费版本的DMS只能一次导出10张表的文档;如需导出全部表,可以分多次导出(导10张 ...
分类:
数据库 时间:
2020-07-13 11:14:50
阅读次数:
83
曲名:Little Poor Me 作者:Layto 1 [00:01.19]I tried hard, you know I care 2 [00:05.01]I care, I care 3 [00:09.22]Just a little poor me 4 [00:13.64]Just a l ...
分类:
其他好文 时间:
2020-07-13 09:52:15
阅读次数:
113