I could seem to find a built in function that would serve the purpose
of System.arraycop y() in java.
I was able to accomplish it with something like this:
def arraycopy(sourc e, sourcepos, dest, destpos, numelem):
dest[destpos:destpos +numelem] = source[sourcepos:sourc epos
+numelem]
is there a built in version, or better way of doing this...
of System.arraycop y() in java.
I was able to accomplish it with something like this:
def arraycopy(sourc e, sourcepos, dest, destpos, numelem):
dest[destpos:destpos +numelem] = source[sourcepos:sourc epos
+numelem]
is there a built in version, or better way of doing this...
Comment