当我尝试在python中设置数组以从文本文件中读取数据时,遇到了神秘的语法错误

时间:2019-08-16 12:36:16

标签: jupyter-notebook

运行这段代码时,出现语法错误,我不知道出了什么问题。

enter image description here

1 个答案:

答案 0 :(得分:0)

well, absorption = np.loadtxt('python test file.txt', 
                              skiprows=3, 
                              usecols=(1,7), 
                              dtype={
                                  'names': ('Well', 'Abs'), 
                                  'formats': ('U3', 'f4') , 
                            unpack = True)

这是代码,我已经尝试过结束},但仍然给我同样的错误