I have an array that I have to add a new value to array value. I am new to arrays. how do I loop thru the array and add to the value in the existing array.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Learn about Python lists and list comprehensions |
|||
|
|
|
First of all i think arrays can not be nested (somehow i get a feeling that's what you are saying in your question). As for adding value to a array it's simple:
You could also use insert(). |
|||||||||||||
|
|
If you are working with arrays and need to do some math I would definitely recommend you numpy. Numpy was made for this purpose. Another hint (to all what I know): try to avoid loops where you can. Reason: The code reads more clearly and is very likely to be faster. Here an example what numpy can do:
For further reading I recommend the numpy tutorial. |
|||
|
|