请问"**"是什么意思?

请问"**"是什么意思?

class Rectangle:
    def __init__(self, color="white", width=10, height=10):
        print "create a", color, self, "sized", width, "x", height

class RoundedRectangle(Rectangle):
    def __init__(self, **kw):
        apply(Rectangle.__init__, (self,), kw)

rect = Rectangle(color="green", height=100, width=100)
rect = RoundedRectangle(color="blue", height=20)


这段代码中的**kw是什么意思?
**表示可变关键字参数。网上有许多这样的说明,找找看吧。
http://www.pgsqldb.org/twiki/bin/view/Python/PythonClassFunc