Lines Matching full:appending
5149 writing or appending. The file will be created if it doesn't exist
5150 when opened for writing or appending; it will be truncated when
6941 list(iterable) -> new list initialized from iterable's items H cmp() wrapper for sort with custom keys. Object wrapper with a custom sort key. Private method returning an estimate of len(list(it)). x.__getitem__(y) <==> x[y] L.__reversed__() -- return a reverse iterator over the list L.__sizeof__() -- size of L in memory, in bytes L.append(object) -- append object to end L.insert(index, object) -- insert object before index L.extend(iterable) -- extend list by appending elements from the iterable L.pop([index]) -> item -- remove and return item at index (default last).