如何将幅度附加到列表

时间:2019-09-09 04:22:06

标签: python

我收到一个作业问题,要求我们将幅度附加到“幅度”列表中。有3个变量可以计算这些变量(x,y,z)。我们需要使用距离公式来计算幅度。在mimr框中,给出:def compute_3dmagnitudes(X,Y,Z):幅度= []返回幅度。

在括号内,括号内和其他方法下面列出列表。但是似乎没有任何作用。

def compute_3dmagnitudes(X, Y, Z):
    magnitudes = []



    return magnitudes

2 个答案:

答案 0 :(得分:1)

您将使用append

将代码更改为

def compute_3dmagnitudes(X, Y, Z):
    magnitudes = []
    # however you calculate magnitude
    magnitudes.append(#your magnitude calculation)

    return magnitudes

答案 1 :(得分:1)

您可以声明列表magnitudes = []

append()用作magnitudes.append(# calculated magnitude here)

,返回幅度为return magnitudes