如果我有这个功能
def my_function(a,b,c):
当用户调用该函数时,他们省略最后一个参数
print(my_function(a,b))
我应该提出什么例外?
python exception
exception ×1
python ×1