Listing elements () count elements in advance?

To support indexing over collections, Python includes the enumerate () function . It provides an index for collection.

for index, item in enumerate(list):
    # do domething
    print index

In my case, I have a huge list and am wondering if it is faster to create the index manually using enumerate () ? eg.

index = 0
for item in list:
    # do something
    print index
    index = index + 1
+3
source share
2 answers

The function enumerateis built-in; he does not consider elements a priori. The following is the implementation of the C code :

static PyObject *
enum_next(enumobject *en)
{
    PyObject *next_index;
    PyObject *next_item;
    PyObject *result = en->en_result;
    PyObject *it = en->en_sit;

    next_item = (*it->ob_type->tp_iternext)(it);
    if (next_item == NULL)
        return NULL;

    next_index = PyInt_FromLong(en->en_index);
    if (next_index == NULL) {
        Py_DECREF(next_item);
        return NULL;
    }
    en->en_index++; 

    if (result->ob_refcnt == 1) {
        Py_INCREF(result);
        Py_DECREF(PyTuple_GET_ITEM(result, 0));
        Py_DECREF(PyTuple_GET_ITEM(result, 1));
    } else {
        result = PyTuple_New(2);
        if (result == NULL) {
            Py_DECREF(next_index);
            Py_DECREF(next_item);
            return NULL;
        }
    }
    PyTuple_SET_ITEM(result, 0, next_index);
    PyTuple_SET_ITEM(result, 1, next_item);
    return result;
}

Thus, the function gives an integer next enon the fly.

+5
source

, () . - , , "" .

+1

All Articles