Can anyone tell me what the * character is doing in this line of python code?
struct.pack(">%df" % numframes, *[frame/fps for frame in xrange(numframes)])
I've look through the documentation but I can't find that character on it's own.
Thanks!
Can anyone tell me what the * character is doing in this line of python code?
struct.pack(">%df" % numframes, *[frame/fps for frame in xrange(numframes)])
I've look through the documentation but I can't find that character on it's own.
Thanks!