在Python的方程式中使用数组

时间:2019-01-10 05:56:12

标签: arrays loops equation

所以我试图遍历方程中的数组,但似乎找不到我的错误。 lamda [wav]是我需要在lamda数组中提取数字的地方。代码如下。

import math
c = 2.998*10**8
k = 1.381*10**(-23)
h = 6.626*10**(-34)
lamda = [0.2,0.4,0.6,0.8,1.0,2,4,6,8,10,15,20,30,40,50]
T = 288
x = 2*math.pi*h*c**2
y = h*c
z = k*T
for wav in range(len(lamda)):
    print = (x/(lamda[wav]**5)*1/(exp(y/(lamda[wav]*z)-1))

0 个答案:

没有答案