执行下面Python代码后,输出的结果是?( )
def func(a, *, b):
print("{},{}".format(a, b))
func(1, b=2)
1,2
2,1
抛出异常
None