I'm trying to convert a simple C program into Python but as I don't know anything about C and a little about Python its just difficult for me..
I'm stuck at C pointers.
There is a function that takes an unsigned long int pointer and adds its values to some variables within a while-loop:
uint32_t somename(const uint32_t *z) {
while(....) {
a += z[0]
b += z[1]
c += z[2]
z += 3
}
}
Can someone please tell me how to accomplish the same thing in python? (The part that I didn't understand at all is " z += 3 ")
I'm aware that there aren't pointers in python. (at least not like C) But the problem is that I don't know what C pointers exactly do and therefor can't make this happen in python.
....is pretty important too. – tc. Apr 6 '11 at 23:29z= z[3:]could be considered remotely equivalent, except for the fact that it takes a lot more time, moving memory around and there's no equivalent forz-= 3later on (the missing elements are not there anymore). – tzot Apr 30 '11 at 11:26