需要帮助在python 3中编写此函数

时间:2017-09-13 23:01:41

标签: python python-3.x

如何在python3中表示此代码,它是用python 2编写的

    def transform(x, y , (a, b, c, d, e, f)=matrix):
        return a*x + b*y + c, d*x + e*y + f

错误

def transform(x, y , (a, b, c, d, e, f)=matrix):
                     ^
SyntaxError: invalid syntax

还有更多来了

1 个答案:

答案 0 :(得分:-2)

def transform(x, y, matrix):
    (a, b, c, d, e, f) = matrix
    return a*x + b*y + c, d*x + e*y + f