python第16篇之关键参数赋值(keyword)

时间:2021-07-15 06:24:15
#!/usr/bin/python

def total(initial=5,*numbers,vegetables):
count = initial
for number in numbers:
count += number
count += vegetables
return count
print(total(10,1,2,3,vegetables=50))
print(total(10,1,2,30))


定义一个函数,调用了两次,第一次没有问题。

第二次调用就出现问题:

66
Traceback (most recent call last):
File "./9keywords.py", line 10, in <module>
print(total(10,1,2,30))
TypeError: total() missing 1 required keyword-only argument: 'vegetables'

原因时vegetables这个参数没有给值。这里的vegetables是一个key-word必须给一个值。