下面代码中描述的是哪一种传入参数的方法?( )
def f(a,b):
if a>b:
print(“1”)
elif a==b:
print(“2”)
else:
print(“3”)
f(2,3)
可变参数
关键字参数
默认参数
位置参数