码迷,mamicode.com
首页 >  
搜索关键字:lod    ( 412个结果
[]Python][simple]Serialize data with Pickle and deserialize data from pickle
序列化 import pickle friend = {"Dan": [20, "Lodon", 123123], "Mary" : [24, "Madi", 333333]} with open("friend.dat", "wb") as f: pickle.dump(friend, f) 反序 ...
分类:编程语言   时间:2019-12-31 10:32:22    阅读次数:74
[易学易懂系列|rustlang语言|零基础|快速入门|(29)|实战6:BDD工具cucumber_rust]
[易学易懂系列|rustlang语言|零基础|快速入门|(29)|实战6:BDD工具cucumber_rust] 项目实战 实战6:BDD工具cucumber_rust 今天我们来学习下BDD行为驱动测试工具cucumber_rust。 关于BDD,可以简单看看这些介绍: "https://www. ...
分类:编程语言   时间:2019-12-30 22:53:15    阅读次数:67
PHP获取毫秒时间戳
//获取毫秒时间 function microsecond() { $t = explode(" ", microtime()); $microsecond = round(round($t[1].substr($t[0],2,3))); return $microsecond; } ...
分类:Web程序   时间:2019-12-20 11:54:34    阅读次数:114
数据分析07 /matplotlib绘图
数据分析07 /matplotlib绘图 [TOC] 1. 绘制线性图:plt.plot() 绘制单条线形图 绘制抛物线形图 在一个坐标系中绘制多条曲线 给x,y设定标识 设置图例大小 设置图例legend() 保存图例 2. 绘制柱状图:plt.bar() plt.bar()参数:第一个参数是索引 ...
分类:其他好文   时间:2019-12-14 11:39:13    阅读次数:116
Typecho显示文章阅读次数统计
#控制台 / 外观 / 编辑当前外观 / 在 functions.php 最后面加入以下代码 #代码已中加入了cookie验证,让文章浏览次数更具有真实性 function get_post_view($archive) { $cid = $archive->cid; $db = Typecho_D ...
分类:其他好文   时间:2019-12-12 01:15:08    阅读次数:103
常用的基础方法,对象转数组,phpcurl请求
/** * CURL方法 * @param type $url * @param type $https * @param type $method * @param type $data * @return type */public function request($url, $https = ...
分类:编程语言   时间:2019-11-27 19:08:51    阅读次数:90
C# webclient progresschanged downlodfileCompleted
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Diagnostics; using Sy... ...
分类:Windows程序   时间:2019-11-23 21:42:28    阅读次数:82
php explode容易犯的错误
php explode容易犯的错误 <pre> $pos = strpos($v, 'Controller'); if (is_numeric($pos)) { $kongzhiqifege = explode('Controller', $v); $kongzhiqi = $kongzhiqife ...
分类:Web程序   时间:2019-11-17 14:21:30    阅读次数:148
php array_push 与 $arr[]=$value 性能比较
使用array_push压入1000000个元素<pre><?php$starttime = get_microtime();$arr = array();for($i=0; $i<1000000; $i++){ array_push($arr, $i);}$endtime = get_microt ...
分类:Web程序   时间:2019-11-17 11:04:11    阅读次数:117
PHP将数组转字符串
implode(',',$arr) //将数组转字符串 $arr = [ 'a'=>1, 'b'=>2, 'c'=>3, ]; $arr_string = implode(',',$arr); dump($arr_string); //打印为 string(5) "1,2,3" ...
分类:编程语言   时间:2019-11-13 16:04:59    阅读次数:95
412条   上一页 1 ... 6 7 8 9 10 ... 42 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!