码迷,mamicode.com
首页 >  
搜索关键字:enumerate    ( 668个结果
枚举类型内部函数 enumerate
enumerate()说明enumerate()是python的内置函数enumerate在字典上是枚举、列举的意思对于一个可迭代的(iterable)/可遍历的对象(如列表、字符串),enumerate将其组成一个索引序列,利用它可以同时获得索引和值enumerate多用于在for循环中得到计数例 ...
分类:编程语言   时间:2019-01-18 13:29:49    阅读次数:154
线程池,协程
线程的其他方法: Threading.current_thread() #当前线程对象 GetName() 获取线程名 Ident 获取线程id Threading.Enumerate() #当前正在运行的线程对象的一个列表 Threading.active_count() #当前正在运行的线程数量 ...
分类:编程语言   时间:2019-01-14 23:12:29    阅读次数:261
线程队列,线程池和协程
线程的其他方法: threading.current_thread() #当前线程对象 getName() # 获取线程名 ident # 获取线程id threading.enumerate() # 当前正在运行的线程对象的一个列表 threading.active_count() # 当前正在运 ...
分类:编程语言   时间:2019-01-14 21:35:35    阅读次数:174
enumerate 模块
import os list1 = ['a','b','c'] for index,aph in enumerate(list1) #把可遍历对象的数据以及其索引取出分别赋值给index,aph print(index,aph) ...
分类:编程语言   时间:2019-01-14 20:14:08    阅读次数:162
getName()--ident--enumerate--activeCount--线程池--协程(gevent)--优先级队列
一、如何查看线程的id和名字 二、线程池 线程池的回调函数 三、协程 gevent 四、greenlet模块 五、先进后出和优先级队列 ...
分类:编程语言   时间:2019-01-14 18:52:17    阅读次数:203
python中enumerate内置库的使用
使用enumerate,可以自动进行索引下标的赋值,本例代码中使用enumerate,进行excel单元格的赋值操作。 代码如果重复被调用,可将该代码封装成类进行使用 ...
分类:编程语言   时间:2019-01-10 22:54:58    阅读次数:219
在字典的三级菜单中添加内容
li = [] go = True while go: for i,v in enumerate(dic,1): li.append(v) print(i,v) u_c = str(input(">>>")) if u_c.isdigit(): u_c = int(u_c) li1 = [] ... ...
分类:其他好文   时间:2019-01-08 19:25:21    阅读次数:111
8、for emumrate range
1、for循环用户按照顺序循环可迭代对象中的内容,PS:break、continueli = [11,22,33,44]for item in li: print item 2、enumrate 为可迭代的对象添加序号li = [11,22,33]for k,v in enumerate(li, 1 ...
分类:其他好文   时间:2019-01-06 18:07:37    阅读次数:210
python第二周
可以被for 循环的 list dic str set tuple f = open() range() enumerate print(die([])) 告诉我列表所拥有的所有方法 双下方法 print([1].__add__([2])) print([1]+[2]) print('__iter_ ...
分类:编程语言   时间:2018-12-30 20:36:04    阅读次数:187
Python嵌套列表去重
``` raw_list = [ [ 'CS_SUPP_INFO', 'A', '1'], [ 'CS_SUPP_INFO', '1', 'A'], [ 'CS_SUPP_INFO', '1', 'A'], [ 'CS_SUPP_INFO', 'A', '1'], [ 'CS_SUPP_INFO',... ...
分类:编程语言   时间:2018-12-28 15:30:28    阅读次数:242
668条   上一页 1 ... 18 19 20 21 22 ... 67 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!