因此,我已被设置为列出作为名为“ Spectrum.dat”的数据文件提供的数据。如果代码正确,则在Jupyter中运行单元时,您应该在下面看到能量列表[2.1674、2.1724、2.1774、2.1824等...]和强度列表[6.4e-07、1.26e- 06、2.39e-06、4.36e-06等...]。
spect = ___
eV = []
inten = []
for line in spect.readlines():
if not (">" in ___):
tmp = line___
eV.append(float(tmp[0]))
inten.append(float(tmp[1]))
print(eV)
print(inten)
我试图找出下划线是什么。我添加的第一位是spect = open("spectrum.dat", "r+")
,我假设第二个下划线是if not (">" in spect):
,所以现在我停留在最后一位。
下面是Spectrum.dat文件: