While exploring color codes in the Matplotlib Library of Python, I came across this piece of code:
x,y,c=zip(*np.random.rand(30,3))
I looked up the working of the built in function zip()
in Python, but I do not seem to undertstand the role of *
before the numpy random statement.
Thanks in advance.