[TOC] 常见的类型 列表 list.count(data) data出现的次数 list.sort([reverse=False]) 升序排序 list.reverse() 翻转 list.index() 返回data第一次出现的索引 删除操作 del list[index] 删除指定索引的数据 ...
分类:
其他好文 时间:
2019-09-30 14:23:43
阅读次数:
83
做了一下小程序setData使用方法总结,如有错误,请不吝指出,Thanks?(?ω?)? //示例data: data:{ user:'young', obj:{ name:'蓝色蒲公英', age:'17' }, arr:[{ name:'Lucy', age: '18' },{ name:'半 ...
分类:
微信 时间:
2019-09-24 10:24:08
阅读次数:
122
在使用pandas进行条件筛选时,使用了如下的代码: fzd_index=data[(data['实际辐照度']<mi)or(data['实际辐照度']>ma)].index 原本以为,并没有太大的问题。但是出现了ValueError: The truth value of a Series is ...
分类:
编程语言 时间:
2019-09-21 10:35:02
阅读次数:
134
function ajax(options){ // 1.处理默认参数 var {type,url,success,error,data,timeout} = options; type = type || "get"; data = data || {}; timeout = timeout ||... ...
分类:
Web程序 时间:
2019-09-12 23:30:34
阅读次数:
103
const关键字 ~~~js const data=10; console.log(data); data=100;//执行错误 const list=[10,20,30]; console.log(list); list[0]=100; console.log(list); 这样写是可以的,常量指 ...
分类:
其他好文 时间:
2019-09-09 10:33:50
阅读次数:
87
链表逆序 有头结点的链表逆序 coding:utf 8 有头结点的链表逆序 class Node: def __init__(self, data=None, next=None): self.data = data self.next = next def print_link(head): cu ...
分类:
其他好文 时间:
2019-09-04 13:50:16
阅读次数:
72
无序链表移除重复项 coding:utf 8 class Node: def __init__(self, data=None, next=None): self.data = data self.next = next def print_link(head): cur = head.next w ...
分类:
其他好文 时间:
2019-09-04 13:13:36
阅读次数:
71
export default{ set(key,data,time){ let obj={ data=data, ctime:(new Date()).getTime(),//时间戳,同Date.now() ... ...
分类:
其他好文 时间:
2019-09-03 09:44:27
阅读次数:
73
1 superme.rowList = [10,20,50,100]; 2 superme.rowNum = 20; loadComplete : function (data) { if(data.records>100) { $("#rowList").val(superme.rowNum); ...
分类:
其他好文 时间:
2019-08-30 14:17:06
阅读次数:
195
题目描述 Farmer John has installed a new system of N-1N?1 pipes to transport milk between the NN stalls in his barn (2 \leq N \leq 50,0002≤N≤50,000), conv ...
分类:
其他好文 时间:
2019-08-28 22:38:18
阅读次数:
105