Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1 = { 11, 12, 13, 14 } is 1 ...
分类:
其他好文 时间:
2021-01-21 10:52:05
阅读次数:
0
字符函数 #字符拼接 CONCAT('%','abc'); #函数返回subStr在str中出现的位置(返回结果从1开始,0表示不存在) locate(subStr,str); #截取字符串(截取下标从1开始,负数表示右边) SUBSTRING(sub,2) 日期函数 #日期转化 date_form ...
分类:
数据库 时间:
2021-01-20 12:17:05
阅读次数:
0
一 、 Hadoop 集群架构设计 二 、 搭建集群 修改IP地址与hostname以及部署zookeeper、hadoop见上一篇博文《Hadoop 完全分布式搭建》。 三 、修改配置文件 修改nna上的core-site.xml <configuration> <!-- 指定hdfs的names ...
分类:
其他好文 时间:
2021-01-19 12:16:24
阅读次数:
0
1 访问子字符串 # 访问子字符串 str = 'Hello lizi!' print(str[0]) # 下标从0开始 print(str[6:10]) # 第6个字符到第10个字符,但不包含第10个 print(str[:5]) # 同str[0:5] print(str[6:]) # 同str ...
分类:
其他好文 时间:
2021-01-19 12:15:23
阅读次数:
0
1、XPATH使用方法 使用XPATH有如下几种方法定位元素: a、通过绝对路径定位元素(不推荐!) WebElement ele = driver.findElement(By.xpath("html/body/div/form/input")); b、通过相对路径定位元素 WebElement ...
分类:
其他好文 时间:
2021-01-19 12:11:23
阅读次数:
0
1.autocomplete:作用于form或input域,点击时自动弹出历时输入过的数据,点击可快速输入 on:打开此功能 off:关闭此功能 在form上使用时,对整个form有效,但是form下的inout标签可以单独声明 2.autofocus:页面初始化时,自动聚焦到使用此属性的标签 3. ...
分类:
Web程序 时间:
2021-01-18 10:40:00
阅读次数:
0
1、while循环: ''' 猜字游戏 ''' import random number = random.randint(1,101) jishu = 0 while 1: num = int(input('请输入一个数字:')) if num > number: print('小一点') eli ...
分类:
其他好文 时间:
2021-01-16 11:55:22
阅读次数:
0
execution( * concert.Performance.perform(..) ) execution 在方法执行时触发 * 返回任意类型 concert.Performance.perform 方法所属的类+方法名 .. 使用任意参数 execution( * concert.Perfo ...
分类:
其他好文 时间:
2021-01-15 11:58:40
阅读次数:
0
Error This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, se ...
1. 显示窗口的两种方式: Winform中的Form,在显示窗口时,可以使用Show()和ShowDialog()两种方式 2. 非模态窗口方式(可以跟其他界面自由切换,而且不阻塞代码) Show()方法启动的窗口是非模态窗口,可以跟其他界面自由切换, 其后面的代码也会立刻执行,如: 1 Form ...