码迷,mamicode.com
首页 >  
搜索关键字:lower    ( 3122个结果
[LeetCode] 304. Range Sum Query 2D - Immutable
Medium Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left corner (row1, col1) and lower right corne ...
分类:其他好文   时间:2019-12-10 13:31:21    阅读次数:84
string方法介绍
#_*_coding:utf-8_*_#作者:王佃元#日期:2019/12/9#string操作print('hello'*2) #乘法操作,输出对应次数print('helloworld'[2:]) #切片操作,跟列表操作一致print('w' in 'helloworld') #判断内容是否在另 ...
分类:其他好文   时间:2019-12-09 21:50:58    阅读次数:122
js-组成-dom-常见单词
恢复内容开始 1. js组成: ECMAScript(语法) 描述了该语言的语法和基本对象 DOM(文档对象模型) 描述了处理网页内容的方法和接口 BOM(浏览器对象) 描述了与浏览器进行效应的方法和接口 2. JS输出方式: alear警告框, console.log 控制台输出框, (康搜唠可) ...
分类:Web程序   时间:2019-12-09 01:28:14    阅读次数:193
精通awk系列(16):gawk支持的正则表达式
回到: "Linux系列文章" "Shell系列文章" "Awk系列文章" gawk支持的正则 . 匹配任意字符,包括换行符 ^ $ [...] [^...] | + ? () {m} {m,} {m,n} {,n} [:lower:] [:upper:] [:alpha:] [:digit:] [ ...
分类:其他好文   时间:2019-12-08 15:21:52    阅读次数:108
DP单调队列--斜率优化P3195
题意:https://www.luogu.com.cn/problem/P3195 思路:https://www.luogu.com.cn/problemnew/solution/P3195 1 #define IOS ios_base::sync_with_stdio(0); cin.tie(0) ...
分类:其他好文   时间:2019-12-08 12:13:08    阅读次数:99
字符串
#全大写,全小写 s="1,fff,zc,33" s1=s.upper() s2=s.lower() print(s1,s2) """ s3="sdbi" s4=input("输入验证码,不区分大小写") if s3.upper()==s4.upper(): print("验证通过") else: ...
分类:其他好文   时间:2019-12-08 11:00:00    阅读次数:95
lower_bound()和upper_bound()
lower_bound()和upper_bound() 是方便的在有序数组中二分查找的函数,并且在STL其他数据结构中也提供该方法(如map和set)。但是两函数并不是二分查找“小于”和“大于”的第一个元素。lower_bound(first, last, val)大于等于val的第一个元素uppe... ...
分类:其他好文   时间:2019-12-06 23:21:42    阅读次数:104
MySQL——my.cnf常用参数设置说明
[mysqld]lower_case_table_names=1 #是否区分大小写 说明 0:区分大小写,1:不区分大小写read_only=1 # 普通是否可读, 0:关闭可读, 1:开启可读super_read_only=1 # 管理员(super)用户是否可读,超级可读 ,0:关闭可读, 1: ...
分类:数据库   时间:2019-12-06 09:44:34    阅读次数:143
java常用类详细介绍及总结:字符串相关类、日期时间API、比较器接口、System、Math、BigInteger与BigDecimal
一.字符串相关的类 1.String及常用方法 1.1 String的特性 String:字符串,使用一对""引起来表示。 1. String声明为 的, 不可被继承 2. String实现了 接口:表示字符串是 支持序列化 的。 实现了 接口:表示String可以 比较大小 3. String内部 ...
分类:编程语言   时间:2019-12-04 20:03:30    阅读次数:96
python_发送请求类
一、发送请求类 import requests class MyRequest: def __init__(self,url,method='get',data=None,headers=None,is_json=False): method = method.lower() self.url = ...
分类:编程语言   时间:2019-11-30 20:56:21    阅读次数:81
3122条   上一页 1 ... 36 37 38 39 40 ... 313 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!