" **或pow()不支持的操作数类型:' list'和' int'"

时间:2016-11-13 22:22:31

标签: list python-3.x int

我正在制定一项计划,以完成我在大学期间的最后工作。它是计算无人机臂厚度的算法。 我在SageMath上完成了表达式并在Python中开发

import math
import matplotlib.pyplot as plt
import pylab 

F=float((2*9.81)/4)
S=float(1.5) #coeficiente de segurança
Tensrup=float(4.1575e+7) #Tensão de ruptura
T=Tensrup/S  #Tensão adm (que foi multiplicada por 1.1)
r=float(0.75*10**-3)  #raio interior
b=range(1, 1000)
L=[x*10**-3 for x in b] #*10**⁻3 is a unity conversion
R=[]
for l in L:
    R.append(1/10000*math.sqrt(1/3)*math.sqrt((75000000*(6050000000/98695877281*F**2*L**2*S**2/T**2 + 1/37010953980375000000000*math.sqrt(5147226562500000000000000000000000000000000*F**4*L**4*S**4 + 9740876192266211952961/3*T**4)/T**2)**(2/3) - 1)/(6050000000/98695877281*F**2*L**2*S**2/T**2 + 1/37010953980375000000000*math.sqrt(5147226562500000000000000000000000000000000*F**4*L**4*S**4 + 9740876192266211952961/3*T**4)/T**2)**(1/3)) + 1/2*math.sqrt(3300000000/314159*math.sqrt(1/3)*F*L*S/(T*math.sqrt((75000000*(6050000000/98695877281*F**2*L**2*S**2/T**2 + 1/37010953980375000000000*math.sqrt(5147226562500000000000000000000000000000000*F**4*L**4*S**4 + 9740876192266211952961/3*T**4)/T**2)**(2/3) - 1)/(6050000000/98695877281*F**2*L**2*S**2/T**2 + 1/37010953980375000000000*math.sqrt(5147226562500000000000000000000000000000000*F**4*L**4*S**4 + 9740876192266211952961/3*T**4)/T**2)**(1/3))) - (6050000000/98695877281*F**2*L**2*S**2/T**2 + 1/37010953980375000000000*math.sqrt(5147226562500000000000000000000000000000000*F**4*L**4*S**4 + 9740876192266211952961/3*T**4)/T**2)**(1/3) + 1/75000000/(6050000000/98695877281*F**2*L**2*S**2/T**2 + 1/37010953980375000000000*math.sqrt(5147226562500000000000000000000000000000000*F**4*L**4*S**4 + 9740876192266211952961/3*T**4)/T**2)**(1/3)))
plot = plt.figure(1)
plt.plot(L,R)
plt.ylabel("Raio exterior (m)")
plt.xlabel("Largura do braço (m)")
plt.title("Dimensionamento dos braços",  fontweight='bold')
plt.grid(True)
plt.tight_layout()

pylab.show()

我想创造一个长度(L),它在1到1000之间变化(然后我乘以10 - 3变换为mm)并逐点avaliate以查看手臂的最佳长度。 当我运行它时,我收到了这个错误

The debugged program raised the exception unhandled TypeError
"unsupported operand type(s) for ** or pow(): 'list' and 'int'" File:
/home/zanetti/Documents/Python/DRone.py, Line: 14

我是一位爱好者和代码初学者。我已经尝试过使用列表和数组的东西,但事实是我几乎什么都不懂= /

1 个答案:

答案 0 :(得分:1)

您将L的元素作为l循环,但是您在大型编译行中使用L,而您应该使用l

这意味着在某些时候,解释器偶然发现L**2这是一个提升到2次幂的列表,这在python中没有任何意义。

建议:避免使用相同名称且仅因情况不同的变量。改进命名变量将为您节省很多麻烦。