-2
這個程序是要找到一個向量的正常化,但我不能打印的清單:無法打印列表,如何糾正錯誤?
防守功能:
def _unit_vector_sample_(vector):
# calculate the magnitude
x = vector[0]
y = vector[1]
z = vector[2]
mag = ((x**2) + (y**2) + (z**2))**(1/2)
# normalize the vector by dividing each component with the magnitude
new_x = x/mag
new_y = y/mag
new_z = z/mag
unit_vector = [new_x, new_y, new_z]
#return unit_vector
主程序:
vector=[2,3,-4]
def _unit_vector_sample_(vector):
print(unit_vector)
我怎樣才能糾正錯誤?
修復您的問題實際上是一個問題,並正確地格式化您的代碼以供顯示。 – HostFission