###示例.1 import random from random import shuffle x = [[i] for i in range(10)] shuffle(x) print(x) 运行结果: [[1], [2], [5], [0], [7], [9], [3], [8], [4], ...
分类:
编程语言 时间:
2021-01-21 10:36:13
阅读次数:
0
C++算法板子 高精度 高精度推荐 用python来写,这里的是C++的高精度运算模板 索引: 高精 * 低精 高精 + 高精 高精 - 高精 高精 / 低精 1、高精 * 低精 #include <iostream> #include <vector> using namespace std; v ...
分类:
编程语言 时间:
2021-01-19 12:26:52
阅读次数:
0
x + **声明** ``` declare -A dict ``` + **赋值** + **初值** ``` dict=([key1]="value1" [key2]="value2" [key3]="value3") ``` + **动态赋值** ``` dict['key']=value ` ...
分类:
系统相关 时间:
2021-01-19 12:16:11
阅读次数:
0
定义支持多值参数的函数 有时需要一个函数能够处理参数个数不确定,这是需要使用多值参数。 Python中有两种多值参数: 参数名前增加一个 * 可以接收元组 参数名前增加一个 ** 可以接收字典 【多值参数传递】 复制代码 def demo(num, *nums, **person): print(n ...
分类:
编程语言 时间:
2021-01-18 11:32:19
阅读次数:
0
第一种:set集合,去重数组 set集合,元素无序,不重复 Python: arr=['a','b','c'] el=set(arr) print(el) 第二种: 放到一个字典里作为key def getNonRepeat(data): return list(dict.fromKeys(data ...
分类:
其他好文 时间:
2021-01-15 12:01:05
阅读次数:
0
list 遍历数据:检查每一个列表中的元素 for i in li: print(i) 切片:输出的指定索引之间的数据 li[1:4]字典dict 实例化一个字典对象: data_dict = {} 增 data_dict['name'] = 'xiaowang' 查 print(data_dict ...
分类:
其他好文 时间:
2021-01-14 11:06:14
阅读次数:
0
一.字典的定义: 前面我们说过列表,它适合于将值组织到一个结构中并且通过编号对其进行引用。字典则是通过名字来引用值的数据结构,并且把这种数据结构称为映射,字典中的值没有特殊的顺序,都存储在一个特定的键(key)下,键可以是数字、字符串甚至元组。字典也是python中唯一内建的映射类型。 二.创建和使 ...
分类:
编程语言 时间:
2021-01-13 10:58:02
阅读次数:
0
一般拿到的cookies字符串格式为"xxx:xxxxx; xxxx:xxxxx; ",简单自定义一个函数转换 def cookie_to_dic(mycookie): dic = {} for i in mycookie.split('; '): dic[i.split('=')[0]] = i. ...
分类:
编程语言 时间:
2021-01-12 11:13:55
阅读次数:
0
简介 字典是一种可变容器模型,且可存储任意类型对象,字典的每个键值 key=>value对用冒号:分割,每个键值对之间用逗号 , 分割,整个字典包括在花括号{} 中 ,如: object = { 'color': 'yellow', 'size': 'big' } print(object['col ...
分类:
编程语言 时间:
2021-01-12 10:47:29
阅读次数:
0
china-data-dictionary 刚发现一个生成数据字典比较不错的工具china-data-dictionary https://www.oschina.net/p/china-data-dictionary 使用步骤 修改 index.php 文件里 app_init()将其中定义的如下 ...
分类:
其他好文 时间:
2021-01-12 10:28:48
阅读次数:
0