函数内的两个向量

时间:2017-12-23 08:29:23

标签: python function

我是Python新手。

我想在里面创建一个带有两个向量的函数。我试过这个

ExpectedConditions.InvisibilityOfElementLocated()

但是我有一条消息错误,如

  

SyntaxError:语法无效。

请,需要帮助。

2 个答案:

答案 0 :(得分:2)

您不能将元组作为参数放在函数定义中。在Python语言参考中查看Multiple Function Arguments8.6. Function definitions

尝试这样的事情:

def twovectors(vector1, vector2):
    velocity1, length1 = vector1
    velocity2, length2 = vector2
    # Other code...

我使用tuple unpacking来扩展提供的元组参数。

答案 1 :(得分:-1)

以这种方式在python中编写函数:

def twovectors(velocity1, velocity2):
    # You can get the length of those vectors after you get inside the function
    len1, len2 = len(velocity1), len(velocity2)
    // Your code here

    return whateveryouwantto