tuple parameter unpacking is not supported in python3
参考:http://blog.csdn.net/sunhuaqiang1/article/details/70244328
lambda (x, y): x + y
改之后:
lambda x_y: x_y[0] + x_y[1]
tuple parameter unpacking is not supported in python3
参考:http://blog.csdn.net/sunhuaqiang1/article/details/70244328
lambda (x, y): x + y
改之后:
lambda x_y: x_y[0] + x_y[1]