test页首

摘要: reduce 对可迭代对象进行累积操作 https://www.runoob.com/python/python-func-reduce.html 注意:Python3.x reduce() 已经被移到 functools 模块里,如果我们要使用,需要引入 functools 模块来调用 reduc 阅读全文
posted @ 2022-09-21 19:55 开饭了没 阅读(33) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/weixin_44725500/article/details/103571403 阅读全文
posted @ 2022-06-17 10:40 开饭了没 阅读(26) 评论(0) 推荐(0)
摘要: 双拼 微软设置小鹤双拼 win r regedit 找到计算机\HKEY_CURRENT_USER\Software\Microsoft\InputMethod\Settings\CHS 项 新建一个名为 UserDefinedDoublePinyinScheme0 的字符串值,值为: 小鹤双拼*2 阅读全文
posted @ 2022-04-20 03:51 开饭了没 阅读(922) 评论(0) 推荐(0)
摘要: 正则表达式 参考: https://regex101.com (可以debug,有各种详细说明,有各语言使用例子 :) https://tool.oschina.net/uploads/apidocs/jquery/regexp.html 基础 a+ 匹配1或多个a a* 匹配0或多个a a? 匹配 阅读全文
posted @ 2022-04-19 01:25 开饭了没 阅读(42) 评论(0) 推荐(0)
摘要: 汉字编码;python输出所有汉字;pypinyin拼音搜索汉字; 阅读全文
posted @ 2022-04-16 05:48 开饭了没 阅读(596) 评论(0) 推荐(0)
摘要: str # C标准中空白字符有:空格(' ')、换页('\f')、换行('\n')、回车('\r')、水平制表符('\t')、垂直制表符('\v') str.strip() # 去除两边空白符(whitespaces); str.lstrip()去除左空白; str.rstrip()去除右空白 st 阅读全文
posted @ 2022-04-15 20:21 开饭了没 阅读(42) 评论(0) 推荐(0)
摘要: 基础 https://docs.python.org/zh-cn/3/library/datetime.html 源代码: Lib/datetime.py 类继承关系: object timedelta tzinfo timezone time date datetime datetime.date 阅读全文
posted @ 2022-04-15 19:47 开饭了没 阅读(63) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/tkqasn/p/6001134.html 阅读全文
posted @ 2022-04-15 19:13 开饭了没 阅读(26) 评论(0) 推荐(0)
摘要: 枚举 // switch 可以用枚举类型 enum Sesson implements IA{ //通过javap反编译可以看出默认继承自Enum类,而且Sesson是final类 //不能extends别的了,implements接口还是可以的 // public static final Sea 阅读全文
posted @ 2022-04-07 14:22 开饭了没 阅读(45) 评论(0) 推荐(0)
摘要: js [画布Canvas SVG](#画布canvas-svg) 媒体对象音频视频 定位 拖放 本地缓存 应用缓存 后台脚本Web Workers 从服务器获得更新。SSE RWD XML XHTML属性是以 XML 格式编写的 HTML 属性。 js HTML noscript 标签定义了替代内容 阅读全文
posted @ 2022-04-04 00:07 开饭了没 阅读(47) 评论(0) 推荐(0)

test页脚