上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 102 下一页
摘要: String模块包含大量实用常量和类,以及一些过时的遗留功能,并还可用作字符串操作。 原文:http://www.10tiao.com/html/384/201709/2651305041/1.html 1. 常用方法 2.字符串常量 3.字符串模板Template 通过string.Templat 阅读全文
posted @ 2017-11-10 09:20 liujiacai 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 原文:https://my.oschina.net/cuffica/blog/33336 https://www.cnblogs.com/renpingsheng/p/7105296.html random是用于生成随机数的,我们可以利用它随机生成数字或者选择字符串。 random.random() 阅读全文
posted @ 2017-11-10 09:14 liujiacai 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 一、校验数字的表达式 1 数字:^[0-9]*$ 2 n位的数字:^\d{n}$ 3 至少n位的数字:^\d{n,}$ 4 m-n位的数字:^\d{m,n}$ 5 零和非零开头的数字:^(0|[1-9][0-9]*)$ 6 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9] 阅读全文
posted @ 2017-11-09 11:41 liujiacai 阅读(232) 评论(0) 推荐(0) 编辑
摘要: Python正则表达式指南 原文:http://blog.csdn.net/qdx411324962/article/details/46799831 Python3(2):正则表达式与Python(RE)模块 原文:https://zhuanlan.zhihu.com/p/39365124 htt 阅读全文
posted @ 2017-11-09 10:38 liujiacai 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 【常见面试问题总结目录>>>】 【面试】【MySQL常见问题总结】【03】 2016-05-29 22:20 阅读(8244) 评论(2) 【面试】【MySQL常见问题总结】【03】 【面试】【MySQL常见问题总结】【03】 2016-05-29 22:20 阅读(8244) 评论(2) 【面试】 阅读全文
posted @ 2017-11-08 22:02 liujiacai 阅读(425) 评论(0) 推荐(0) 编辑
摘要: MySQL性能调优my.cnf详解 https://blog.linuxeye.cn/379.html http://blog.csdn.net/orichisonic/article/details/48026031 提供一个MySQL 5.6版本适合在1GB内存VPS上的my.cnf配置文件(点 阅读全文
posted @ 2017-11-08 21:10 liujiacai 阅读(437) 评论(0) 推荐(0) 编辑
摘要: python logging模块 原文:http://www.cnblogs.com/dahu-daqing/p/7040764.html 1 logging模块简介 logging模块是Python内置的标准模块,主要用于输出运行日志,可以设置输出日志的等级、日志保存路径、日志文件回滚等;相比pr 阅读全文
posted @ 2017-11-08 16:41 liujiacai 阅读(166726) 评论(6) 推荐(11) 编辑
摘要: python collections模块详解 原文:http://www.cnblogs.com/dahu-daqing/p/7040490.html 1.模块简介 collections包含了一些特殊的容器,针对Python内置的容器,例如list、dict、set和tuple,提供了另一种选择; 阅读全文
posted @ 2017-11-08 16:40 liujiacai 阅读(727) 评论(0) 推荐(0) 编辑
摘要: MYSQL故障排查 https://zhuanlan.zhihu.com/p/27834293 阅读全文
posted @ 2017-11-08 15:18 liujiacai 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.bkjia.com/Mysql/1222405.html http://www.ywnds.com/?p=5045 performance_schema提供监控策略及大量监控项,包括:元数据锁、进度跟踪、事务、内存使用及存储程序等。但是,performance_schem 阅读全文
posted @ 2017-11-08 10:26 liujiacai 阅读(920) 评论(0) 推荐(0) 编辑
上一页 1 ··· 82 83 84 85 86 87 88 89 90 ··· 102 下一页