PHP » PYTHON |
login |
register |
about
|
PYTHON array_unshift
is this article helpful?
|
Python replacement for PHP's array_unshift
[
edit
| history
]
myList.insert(0, var) or myList[:0] = [var1, var2, ...] or a nearly compatible function (returns the array, doesn't do it in place): def array_unshift (array, *args): """Prepend one or more elements to the beginning of an array""" for i in reversed (args): array.insert (0, i) return array array_unshift(PHP 4, PHP 5) array_unshift — Prepend one or more elements to the beginning of an array Descriptionarray_unshift() prepends passed elements to the front of the array . Note that the list of elements is prepended as a whole, so that the prepended elements stay in the same order. All numerical array keys will be modified to start counting from zero while literal keys won't be touched. Parameters
Return ValuesReturns the new number of elements in the array . Examples
Example #1 array_unshift() example
<?php The above example will output: Array ( [0] => apple [1] => raspberry [2] => orange [3] => banana )
See Also
|
more
Recently updated
more
Most requested
more
Last requests
|