Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: *argsと**kwargs?
私は呼ばれる関数を見ました
def x(**xyz): print "Ok"
**xyzさて、この関数では、 ieの意味は**何ですか?
**xyz
**
チュートリアルで説明したように、キーワード引数。
**name という形式の最終仮パラメーターが存在する場合、仮パラメーターに対応するものを除くすべてのキーワード引数を含む辞書 (型のマッピング — dict を参照) を受け取ります。