码迷,mamicode.com
首页 >  
搜索关键字:itertools    ( 219个结果
45-暴力密码字典
import itertools as its words = 'abcd123456' r = its.product(words, repeat=6) dic = open('pass.txt', 'a') for i in r: dic.write(''.join(i) + '\n') pri... ...
分类:其他好文   时间:2019-01-18 23:15:00    阅读次数:225
operator, itertools
import operatorimport itertools info_list = [ {'name': 'Quinn', 'age': 50}, {'name': 'Ryan', 'age': 18}, {'name': 'May', 'age': 30} ] new_list = sorte... ...
分类:其他好文   时间:2019-01-18 17:27:12    阅读次数:107
机器学习入门-混淆矩阵-准确度-召回率-F1score 1.itertools.product 2. confusion_matrix(test_y, pred_y)
1. itertools.product 进行数据的多种组合 intertools.product(range(0, 1), range(0, 1)) 组合的情况[0, 0], [0, 1], [1, 0], [1, 1] 2. confusion_matrix(test_y, pred_y) # ...
分类:其他好文   时间:2019-01-15 14:19:23    阅读次数:404
猫途鹰简单爬虫正则巩固
import json import re from itertools import chain import requests from requests import RequestException def get_page_index(url): try: response=request... ...
分类:其他好文   时间:2019-01-11 21:17:36    阅读次数:244
python 使用中遇到的问题,记录及解决方法
1、读取configparser 配置文件报错 : 提示: ConfigParser.MissingSectionHeaderError when parsing rsyncd config file with global options 解决方法: https://stackoverflow.c ...
分类:编程语言   时间:2019-01-10 18:49:16    阅读次数:182
itertools mode 之 combinations用法
leetcode例题: 216. Combination Sum III Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be ...
分类:其他好文   时间:2019-01-07 10:39:23    阅读次数:262
还有这种操作?异步迭代器的切片操作!!!
问题引出 对于同步中的迭代器我们可以使用itertools的islice模块来实现 输出 那如何对异步生成器进行类似切片的操作呢? 问题产生 我在使用mongo的异步模块motor的使用,查询得到300万条数据,然后去进行操作, 发现返回结果data为AsyncIOMotorCursor类型,查阅资 ...
分类:其他好文   时间:2019-01-02 15:12:04    阅读次数:245
Python进阶技巧汇总01
总结自原创: Leoxin 菜鸟学Python 原文地址: "强烈推荐|麻烦刚关注2699名小伙伴一定要看,信息量太大" 1 字符串 + 字符串的format格式一般有两种操作: (1)使用 操作符 (2)使用 + 常用的文本处理7招 (1)字符串的连接和合并 (2)字符串的切片和相乘 ==(3)字 ...
分类:编程语言   时间:2018-12-20 22:12:42    阅读次数:215
一个有趣的小例子,带你入门协程模块-asyncio
一个有趣的小例子,带你入门协程模块 asyncio 上篇文章写了关于yield from的用法,简单的了解异步模式,【https://www.cnblogs.com/c x a/p/10106031.html】这次让我们通过一个有趣例子带大家了解asyncio基本使用。 目标效果图 基本原理 1.通 ...
分类:其他好文   时间:2018-12-20 16:57:33    阅读次数:228
Python的itertools模块
本章将介绍Python自建模块itertools,更多内容请参考:Python参考指南 python的自建模块itertools提供了非常有用的用于操作迭代对象的函数。 首先,我们看看itertools提供的几个无限迭代器: >>>import itertools >>>natuals = iter ...
分类:编程语言   时间:2018-12-18 02:25:16    阅读次数:173
219条   上一页 1 ... 6 7 8 9 10 ... 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!