num = Falsefor i in range(10): if i < 5: continue print(i) for j in range(10): print("哎",j) if j == 6: num = True break if num: break ...
分类:
其他好文 时间:
2020-06-01 20:52:23
阅读次数:
93
一.单变量分析绘图 1.什么是单变量分析? 单变量其实就是我们通常接触到的数据集中的一列数据 2.使用NumPy模块从标准正态分布中随机地抽取1000个数,作为我们的连续数值型数据。 data = np.random.normal(size=1000) random是NumPy的一个随机模块,在ra ...
分类:
编程语言 时间:
2020-06-01 19:13:28
阅读次数:
104
前言 NioEventLoopGroup是netty对Reactor线程组这个抽象概念的具体实现,其内部维护了一个EventExecutor数组,而NioEventLoop就是EventExecutor的实现(看名字也可发现,一个是NioEventLoopGroup,一个是NioEventLoop, ...
分类:
Web程序 时间:
2020-06-01 14:02:43
阅读次数:
67
[RoarCTF 2019]Easy Calc 进去一个输入框,可进行计算,看代码发现js。 <!--I've set up WAF to ensure security.--> <script> $('#calc').submit(function(){ $.ajax({ url:"calc.ph ...
分类:
其他好文 时间:
2020-06-01 13:52:08
阅读次数:
191
?x ** * String * Number * Boolean * Null * Undefined * Object */ ...
分类:
Web程序 时间:
2020-06-01 13:46:18
阅读次数:
65
PostgreSQL 数据类型 分类 名称 存储空间 范围 描述 数值类型 int2/smallint 2 bytes -32768 到 +32767 small-range integer 数值类型 int4/integer 4 bytes -2147483648 到 +2147483647 ty... ...
分类:
数据库 时间:
2020-06-01 12:20:34
阅读次数:
365
# 一:int类型# 作用# 定义:# age=10 #int(10)# 名字(参数)# print('111','222')# x=int(10)# name=input('aaa')# res=print('888')# 没有产品# print(res)# 类型转换# res=int('1111 ...
分类:
其他好文 时间:
2020-05-31 21:34:19
阅读次数:
52
在写js脚本的时候经常遇到对象为空或者不是对象的情况,出现这种情况我们可以用if去判断它,然后去执行相应的处理方法,具体判断他们的方法有以下几种: 1、if (typeOf(x) == "undefined") 2、if (typeOf(x) != "object") 3、if(!x) 其中第三种是 ...
分类:
Web程序 时间:
2020-05-31 19:54:21
阅读次数:
104
1.下载 npm install --save vuex-persistedstate 2.在vuex里面引入,默认是localStorage import persistedState from 'vuex-persistedstate' export default new Vuex.Store ...
分类:
其他好文 时间:
2020-05-31 19:45:35
阅读次数:
142
阅读目录 一、引入 js-cookie 1、简介 2、token 3、安装、引入 js-cookie 二、引入、封装 axios 1、简介 2、封装要求 3、引入 axios 三、引入、封装 mock 1、简介 2、封装要求 3、引入 mock 前提: (1) 相关博文地址: SpringBoot ...
分类:
编程语言 时间:
2020-05-31 18:04:33
阅读次数:
1043