标签: python python-2.7 python-3.x
我刚刚发现可以通过以下方式定义函数:
def f(x=2): print x
和
def f(x=2,): print x
使用和不使用逗号的版本之间是否有区别?如果是这样,这两个定义之间有什么区别?