<b><span class="nw" id="_user_python-list@python.org"></span></b>class Bunch(object):<br>    def __init__(self, **fields): <br>        self.__dict__ = fields<br>        <br>p = Bunch(x=2.3, y=4.5)<br>print p                     
<br><br>print p.__dict__<br><br>I dont' understand the usage of the double * here, could anyone explain it for me? thanks.<br><br>