码迷,mamicode.com
首页 >  
搜索关键字:enumerate    ( 668个结果
DC-2靶机
仅供个人娱乐 靶机信息 下载地址:http://www.five86.com/downloads/DC-2.zip 一、主机扫描 二、信息收集 修改hosts文件 windows:C:\Windows\System32\drivers\etc linux:/etc/hosts wpscan --ur ...
分类:其他好文   时间:2020-05-07 20:07:54    阅读次数:75
NLP gensim 相似度计算
```python from collections import defaultdict from gensim import corpora import jieba from gensim import similarities import re class Similarity: def ... ...
分类:其他好文   时间:2020-05-06 01:08:10    阅读次数:52
tensorflow 测量工具,与自定义训练
# 新建测量器m = tf.keras.metrics.Accuracy()# 写入测量器m.update_state([0,1,1],[0,1,2])# 读取统计信息m.result() # 准确率为0.66# 清除m.reset_states() acc_meter = tf.keras.met ...
分类:其他好文   时间:2020-05-05 17:36:29    阅读次数:113
[LeetCode in Python] 5402 (M) longest continuous subarray with absolute diff less than or equal to limit 绝对差不超过限制的最长连续子数组
题目 https://leetcode cn.com/problems/longest continuous subarray with absolute diff less than or equal to limit/ 给你一个整数数组 nums ,和一个表示限制的整数 limit,请你返回最长 ...
分类:编程语言   时间:2020-05-03 20:45:38    阅读次数:69
对传入的数据进行分类
def bifurcate(lst, filter): print(lst) # ['beep', 'boop', 'foo', 'bar'] print(filter) # [True, True, False, True] # 列表名,不是 filter 函数 print(enumerate(l ...
分类:其他好文   时间:2020-05-03 14:47:03    阅读次数:56
线程与线程池
threading模块提供的一些方法: threading.currentThread() 返回当前的线程变量 threading.enumerate() 返回一个包含正在运行的线程的list,正在运行指线程启动后,结束前,不包括启动前和终止后的线程 threading.activeCount() ...
分类:编程语言   时间:2020-05-02 11:31:15    阅读次数:54
公用操作
Python 容器类型转换 + tuple() 作用:将某个序列转换成元组 + list() 作用:将某个序列转换成列表 + set() 作用:将某个序列转换成集合 + 注: + 集合可以快速完成列表去重 + 集合不支持下标 公共操作 + 运算符 | 运算符 | 描述 | 支持的容器类型 | | : ...
分类:其他好文   时间:2020-04-25 23:23:36    阅读次数:58
Python两数之和
Python两数之和 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。 思路一: 思路二: 思路三: ...
分类:编程语言   时间:2020-04-25 10:54:35    阅读次数:78
列表:如何在列表后加入检索编号
enumerate函数的使用 lista = ['xiawang\n','小王\n','135\n'] b= enumerate(lista) print(b) print(list(b)) #enumerate 枚举 a=[temp+'#'+str(index)for index,temp in ...
分类:其他好文   时间:2020-04-15 13:54:42    阅读次数:59
leetcode-65-面试题20-表示数值的字符串
题目描述: 方法一:逻辑判断法:O(N) class Solution: def isNumber(self, s: str) -> bool: s = s.strip() met_dot = met_e = met_digit = False for i, char in enumerate(s) ...
分类:其他好文   时间:2020-04-14 22:14:30    阅读次数:80
668条   上一页 1 ... 3 4 5 6 7 ... 67 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!