0
import numpy as np
import asciidata

def leesdata():
    RA = []
    Dec = []
    data = asciidata.open('S0-2.txt')
    for i in data[1]:
        RA.append(float(i))
    for i in data[2]:
         Dec.append(float(i))
    return RA, Dec

RA, Dec = leesdata()
print RA, Dec

当我运行它时,我得到了这个:

[-0.04] [0.15, 0.138, 0.124, 0.098, 0.088, 0.078, 0.05, 0.041, 0.02,
 0.01, -0.017, -0.004, 0.011, 0.072, 0.079, 0.085]

所以只有我的第一个数据被放入数组 RA 中,但 Dec 工作正常。我究竟做错了什么?

这是我要打开的文件

http://home.strw.leideuniv.nl/~snellen/PS/S2_pos.dat

4

1 回答 1

1

通常我会为此使用 open 和 read 的组合。这是我在文件中读取的方式:

f = open('S0-2.txt', 'r+')
RA = []
DEC=[]
for line in f:
    if ( not(line.startswith('#')) ):
        RA.append( line.split()[1] )
        DEC.append( line.split()[2])

print RA

print DEC
于 2013-04-25T14:42:49.507 回答