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() …