需求: Microsoft Excel是目前办公中使用最频繁的软件,其数据格式为xls,xlsx,一种非常常用的电子表格,小学某班成绩,记录在excel文件中: 姓名 语文 数学 外语 李雷 95 99 96 韩梅 98 100 93 张峰 94 95 95 ... 利用python读写excel, ...
分类:
其他好文 时间:
2020-07-19 16:12:40
阅读次数:
70
1,OSI协议、TCP/IP协议以及每层对应的协议 OSI模型,即开放式通信系统互联参考模型(Open System Interconnection) 1,OSI七层协议分别:物理层、数据链路层、网络层、传输层、会话层、表示层、应用层。 2,TCP/IP五层模型的协议:物理层、数据链路层、网络层、传 ...
分类:
其他好文 时间:
2020-07-19 16:11:52
阅读次数:
136
Description You have k lists of sorted integers in ascending order. Find the smallest range that includes at least one number from each of the k lists ...
分类:
其他好文 时间:
2020-07-19 15:47:40
阅读次数:
73
给你一个二叉树,请你返回其按 层序遍历 得到的节点值。 (即逐层地,从左到右访问所有节点)。 示例: 二叉树:[3,9,20,null,null,15,7], 3 / \ 9 20 / \ 15 7 返回其层次遍历结果: [ [3], [9,20], [15,7] ] class Solution( ...
分类:
其他好文 时间:
2020-07-19 13:49:57
阅读次数:
77
前提条件:nginx支持ngx_http_slice_module模块 配置文件示例: #location 块的配置: location /asd/ { slice 512k; proxy_cache cache; proxy_cache_key $uri$is_args$args$slice_ra ...
分类:
其他好文 时间:
2020-07-19 00:50:36
阅读次数:
186
package LeetCode_1060 /** * 1060. Missing Element in Sorted Array * (Prime) * Given a sorted array A of unique numbers, find the K-th missing number s ...
分类:
其他好文 时间:
2020-07-19 00:49:27
阅读次数:
93
1.事件(onkeydown、onkeypress onkeyup onchange)总结的很好 https://blog.csdn.net/wenqiang612/article/details/73139620 2. 理解 range对象(明天早上看) https://www.cnblogs.c ...
分类:
移动开发 时间:
2020-07-19 00:36:44
阅读次数:
124
for i in range(1, 4+1): name = 'r%s' % i eth0 = { 'mac' : '00:00:00:00:0%s:01' % i, 'ipAddrs' : ['10.0.%s.1/24' % i] } eth1 = { 'ipAddrs' : ['192.168. ...
分类:
Web程序 时间:
2020-07-18 22:53:30
阅读次数:
92
用循环依次对list中的每个名字打印出 Hello, xxx! L = ['Bart', 'Lisa', 'Adam']x = len(L) for i in range(x): print('Hello,', L[i]) 此处,若直接使用 for i in x 时,编译报错:TypeError: ...
分类:
编程语言 时间:
2020-07-18 22:45:27
阅读次数:
95
//语法糖Rangestatic void Main(string[] args) { var myArray = new string[] { "Item1", "Item2", "Item3", "Item4", "Item5" }; for(int i=1; i <= 3; i++) { Co ...