def fun(a, b, c, d):
print('a:', a, 'b:', b, 'c:', c, 'd:', d)
warum dieser funktioniert
fun(3, 7, d=10, *(23,))
und druckt aus:
a: 3 b: 7 c: 23 d: 10
während dies
fun(3, 7, c=10, *(23,))
nicht
Traceback (most recent call last):
File "/home/lookash/PycharmProjects/PythonLearning/learning.py", line 10, in <module>
fun(3, 7, c=10, *(23,))
TypeError: fun() got multiple values for argument 'c'
SyntaxError: positional argument follows keyword argument
.