LaTex的列表环境有itemize和enumerate两种:
itemize就是那种无序的列表,enumerate就是计数的列表。
\documentclass{book}
\usepackage{amsmath}
\usepackage{enumerate}%用于更改标号
\begin{document}
\begin{itemize}
\item this is item 1
\...
分类:
其他好文 时间:
2014-12-03 23:24:30
阅读次数:
252
本函数是把可迭代对象转换为枚举对象。iterable是可迭代参数,比如像列表、数组、字典等对象;start是枚举的起始值,默认是从0开始。这个函数实现原理是这样,从迭代对象的方法__next__()取得一项值,然后就对参数start开始计数,每取一项增加1,生成一个元组返回。本函数实现原理,大体上可以用下面的代码来表示:def enumerate(sequence, start=0): n ...
分类:
编程语言 时间:
2014-11-23 11:50:03
阅读次数:
240
索引迭代Python中,迭代永远是取出元素本身,而非元素的索引。对于有序集合,元素确实是有索引的。有的时候,我们确实想在 for 循环中拿到索引,怎么办?方法是使用 enumerate() 函数:>>> L = ['Adam', 'Lisa', 'Bart', 'Paul']>>> for inde...
分类:
编程语言 时间:
2014-10-24 12:23:33
阅读次数:
209
方式一: app_list = [1234, 5677, 8899] for app_id in app_list: print app_id 输出: 1234 5677 8899 方式二: app_list = [1234, 5677, 8899] for index,app_id in enumerate(app_list): print index, app_id...
分类:
编程语言 时间:
2014-10-17 17:04:16
阅读次数:
184
string类型是不可变的,因此不能采用直接赋值的方式。比如一个字符串 helloworld,想把o替换成z,那么只有先替换,然后再迭代。strings="helloworld"hello=strings.replace('o','z')for index,string in enumerate(h...
分类:
编程语言 时间:
2014-09-30 13:26:19
阅读次数:
235
hr = m_pSysDevEnum->CreateClassEnumerator(*clsid, &pEnumCat, 0); ASSERT(SUCCEEDED(hr)); if FAILED(hr) return; // Enumerate all filters using the category enumerator hr = EnumFilters...
分类:
其他好文 时间:
2014-09-20 08:51:29
阅读次数:
199
for index, item in enumerate(sequence): process(index, item)列表初始化:multilist = [[0 for col in range(5)] for row in range(3)]用*初始化,出现的问题:http://www.j...
分类:
编程语言 时间:
2014-09-01 19:22:13
阅读次数:
268
Suppose n
#include
#include
#include
using namespace std;
bitset getComb(const vector &comb) {
bitset bitcombs;
for (int i=0; i<comb.size(); ++i) bitcombs.set(comb[i], true);
return bitcombs...
分类:
其他好文 时间:
2014-08-01 09:19:21
阅读次数:
267
enumerate 函数用于遍历序列中的元素以及它们的坐标:>>> for i,j in enumerate(('a','b','c')):print i,j0 a1 b2 c>>> for i,j in enumerate([1,2,3]):print i,j0 11 22 3>>> for i,...
分类:
编程语言 时间:
2014-07-28 14:58:23
阅读次数:
237
for o in aa{ println(o)}for (index,value) in enumerate(aa){println("\(index)\(value)")}
分类:
其他好文 时间:
2014-07-14 08:04:26
阅读次数:
208