タグ付けされた質問 「unpack」

1
Python-メソッドパラメータの値の展開順序
def fun(a, b, c, d): print('a:', a, 'b:', b, 'c:', c, 'd:', d) なぜこれが機能するのか fun(3, 7, d=10, *(23,)) そしてプリントアウト: a: 3 b: 7 c: 23 d: 10 この間 fun(3, 7, c=10, *(23,)) ではない Traceback (most recent call last): File "/home/lookash/PycharmProjects/PythonLearning/learning.py", line 10, in <module> fun(3, 7, c=10, *(23,)) TypeError: fun() …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.