上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 123 下一页
摘要: 构建 Python C 扩展模块 有好几种扩展 Python 的功能的方法。其中一种就是用 C 或 C++ 编写 Python 模块。通过这个过程可以提高性能,更好地访问 C 库函数和系统调用。在本教程中,我将带大家了解如何使用 Python API 来编写 Python C 扩展模块。这里说的都是 阅读全文
posted @ 2020-07-27 19:32 公众号python学习开发 阅读(548) 评论(0) 推荐(0) 编辑
摘要: w={"navigator":"hehe"} var handler = { get(target, key,receiver){ console.log("target",target,receiver); return Reflect.has(target, key) ? Reflect.get 阅读全文
posted @ 2020-07-20 23:38 公众号python学习开发 阅读(164) 评论(0) 推荐(0) 编辑
摘要: let testArr = [1,2,3,4,5,6] let a1 = 0 let a2=0 let b1=0 let b2 = 0 // ++在后 console.log(testArr[a1++]) console.log("此时的a1",a1) //++在前 console.log(test 阅读全文
posted @ 2020-07-20 11:00 公众号python学习开发 阅读(158) 评论(0) 推荐(0) 编辑
摘要: def clean_data(data): return unicodedata.normalize('NFKC', data).strip().replace("/r", "").replace("/t", "").replace("/n", "") 阅读全文
posted @ 2020-07-15 16:27 公众号python学习开发 阅读(276) 评论(0) 推荐(0) 编辑
摘要: https://guides.emberjs.com/v3.0.0/getting-started/quick-start/ 阅读全文
posted @ 2020-07-10 11:08 公众号python学习开发 阅读(531) 评论(1) 推荐(0) 编辑
摘要: Object.getOwnPropertyDescriptor 一般的我们通过name属性可以获取函数名,像下面 let demo1 ={ say(){ console.log("im say") } } console.log("第一个例子",demo1.say.name) 如果对象的方法使用了取 阅读全文
posted @ 2020-07-09 11:22 公众号python学习开发 阅读(227) 评论(0) 推荐(0) 编辑
摘要: //Ajax $.ajax({ url:"https://www.baidu.com", type:"GET", dataType:"text", contentType:"application/x-www-form-urlencoded;charset=utf-8", data:{ id:"12 阅读全文
posted @ 2020-07-08 23:56 公众号python学习开发 阅读(1170) 评论(0) 推荐(0) 编辑
摘要: docker cp 86e1111ac273:/app portia_in_docker docker+cp+容器的id 然后冒号 容器的绝对路径 本地宿主机路径 https://apppit6dcs05916.pc.xiaoe-tech.com/detail/p_5d9eb71212cbe_Ckz 阅读全文
posted @ 2020-07-07 11:26 公众号python学习开发 阅读(285) 评论(0) 推荐(0) 编辑
摘要: npm i -g npm-check-updates ncu -u npm install 效果 阅读全文
posted @ 2020-07-06 11:01 公众号python学习开发 阅读(399) 评论(0) 推荐(0) 编辑
摘要: https://en.wikibooks.org/wiki/XPath/CSS_Equivalents 阅读全文
posted @ 2020-07-03 15:43 公众号python学习开发 阅读(150) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 123 下一页