1.描述: upper():用于将字符串全部转换为大写字母 lower():用于将字符串全部转换为小写字母 2.语法 str.upper() str.lower() 3.返回值 upper()或lower()方法有返回值,可以使用新的字符串来接受,调用upper()或lower()方法不会改变原字符 ...
分类:
编程语言 时间:
2020-06-22 15:50:39
阅读次数:
77
题目如下: Given an integer n and an integer start. Define an array nums where nums[i] = start + 2*i (0-indexed) and n == nums.length. Return the bitwise X ...
分类:
其他好文 时间:
2020-06-22 15:49:58
阅读次数:
98
前言 先抛一个问题给我聪明的读者,如果你们使用微服务SpringCloud-Netflix进行业务开发,那么线上注册中心肯定也是用了集群部署,问题来了: 你了解Eureka注册中心集群如何实现客户端请求负载及故障转移吗? 可以先思考一分钟,我希望你能够带着问题来阅读此篇文章,也希望你看完文章后会有所 ...
分类:
其他好文 时间:
2020-06-22 15:49:35
阅读次数:
69
1 import xlrd 2 3 flbrd = "D:\\test.xlsx" 4 ws = xlrd.open_workbook(flbrd) 5 # 获取所有sheet名字:ws.sheet_names() 6 print('获取所有sheet名字',ws.sheet_names()) 7 ...
分类:
编程语言 时间:
2020-06-22 15:48:51
阅读次数:
71
题目如下: There are n cities numbered from 0 to n-1 and n-1 roads such that there is only one way to travel between two different cities (this network for ...
分类:
其他好文 时间:
2020-06-22 15:47:54
阅读次数:
60
代码: if(!doc.setContent(&file)){读取失败操作}发现总是返回false; 使用如下代码调试: if(!doc.setContent(&file,&sErrormsg,&iErrorLine,&iErrorCol)) errmsg返回是格式有问题.解决方法: 一定要确保读取 ...
分类:
其他好文 时间:
2020-06-22 15:47:13
阅读次数:
78
作为收款方,会想确认一笔交易有没有被写入区块链。 由于本地节点(钱包)的区块链,只包含了区块链头,没有交易信息,这笔交易在本地是找不到的。 但是,区块链是一个网络,你可以向包含全部区块信息的节点(例如矿工节点)发请求(GetData),查找指定的交易,找到对应的区块,获取默克尔树。如下图所示 如上图 ...
分类:
其他好文 时间:
2020-06-22 15:46:41
阅读次数:
38
Your country has an infinite number of lakes. Initially, all the lakes are empty, but when it rains over the nth lake, the nth lake becomes full of wa ...
分类:
其他好文 时间:
2020-06-22 15:46:01
阅读次数:
58
CMake 简介 CMake 是一个跨平台的自动化建构系统,它使用一个名为 CMakeLists.txt 的文件来描述构建过程,可以产生标准的构建文件,如 Unix 的 Makefile 或Windows Visual C++ 的 projects/workspaces 。文件 CMakeLists ...
分类:
系统相关 时间:
2020-06-22 15:45:46
阅读次数:
60
Django rest framework源码分析(4) 版本 版本 新建一个工程Myproject和一个app名为api (1)api/models.py from django.db import models class UserInfo(models.Model): USER_TYPE = ...
分类:
其他好文 时间:
2020-06-22 15:45:29
阅读次数:
37
/** * 大纲附件1 * * @param mapping * @param form * @param request * @param response * @return */ @SuppressWarnings("rawtypes") public ActionForward dgfjxz ...
分类:
其他好文 时间:
2020-06-22 15:45:14
阅读次数:
276
原文:https://www.cnblogs.com/math98/p/10971342.html # 把各个Sheet另存为单独的Excel from openpyxl import load_workbook,Workbook wb = load_workbook("excel1.xlsx") ...
分类:
编程语言 时间:
2020-06-22 15:45:00
阅读次数:
141
这个函数我没试过 不知道好不好用 function htmltotxt($document){ $search = array('@<script[^>]*?>.*?</script>@si', // Strip out javascript '@<[\\/\\!]*?[^<>]*?>@si', / ...
分类:
Web程序 时间:
2020-06-22 15:44:24
阅读次数:
64
RIP协议 不适合规模很大的网络 OSPF协议 引入区域的概念,将大的网络划分为小的区域,只记录区域内的信息。 有两层 下面常规区域、上面中转区域 Router F 发消息,交给Router C(边际路由器),再交给Router B 指定进程,通常下只会指定一个进程,多进程比较复杂,我们只做一个进程 ...
分类:
其他好文 时间:
2020-06-22 15:43:55
阅读次数:
46
题目如下: Given the array of integers nums, you will choose two different indices i and j of that array. Return the maximum value of (nums[i]-1)*(nums[j]- ...
分类:
其他好文 时间:
2020-06-22 15:42:18
阅读次数:
67
新建查询 获取所有的连接进程的id SELECT CONCAT("kill ", id, ";") from information_schema.PROCESSLIST 点击字段名,全部复制 粘贴到脚本中运行 ...
分类:
数据库 时间:
2020-06-22 15:41:40
阅读次数:
70
你也可以把这看作是一种语言形式,符号是继电器、句型是门电路,语句则是电脉冲经过门电路过程。 ...
分类:
其他好文 时间:
2020-06-22 15:41:24
阅读次数:
51