2

次の形式のテキスト ファイルがあります。

EFF   3500.  GRAVITY 0.00000  SDSC GRID  [+0.0]   VTURB 2.0 KM/S    L/H 1.25                            
  wl(nm)    Inu(ergs/cm**2/s/hz/ster) for 17 mu in 1221 frequency intervals
            1.000   .900  .800  .700  .600  .500  .400  .300  .250  .200  .150  .125  .100  .075  .050  .025  .010
    9.09 0.000E+00     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0
    9.35 0.000E+00     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0
    9.61 0.000E+00     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0
    9.77 0.000E+00     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0
    9.96 0.000E+00     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0
   10.20 0.000E+00     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0
   10.38 0.000E+00     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0     0

...more numbers 

私はそれを作ろうとしているのでFile[0][0]、「EFF」などの単語を印刷します。

import sys
import numpy as np
from math import *
import matplotlib.pyplot as plt

print 'Number of arguments:', len(sys.argv), 'arguments.'
print 'Argument List:', str(sys.argv)

z = np.array(sys.argv)          #store all of the file names into array

i = len(sys.argv)           #the length of the filenames array

File = open(str(z[1])).readlines()  #load spectrum file 

for n in range(0, len(File)):
    File[n].split()

for n in range(0, len(File[1])):
    print File[1][n]

ただし、各リスト インデックスが 1 文字であるかのように、個々の文字を出力し続けます。これには空白も含まれます。readlines().split() を配置するとエラーが発生するため、ループに split() があります。

出力:

    E
    F
    F



    3
    5
    0
    0
    .


    G
    R
    A
    V
    I

...ect

私は何を間違っていますか?

4

2 に答える 2

4
>>> text = """some
... multiline
... text
... """
>>> lines = text.splitlines()
>>> for i in range(len(lines)):
...     lines[i].split()  # split *returns* the list of tokens
...                       # it does *not* modify the string inplace
... 
['some']
['multiline']
['text']
>>> lines   #strings unchanged
['some', 'multiline', 'text']
>>> for i in range(len(lines)):
...     lines[i] = lines[i].split() # you have to modify the list
... 
>>> lines
[['some'], ['multiline'], ['text']]

ワンライナーが必要な場合は、次のようにします。

>>> words = [line.split() for line in text.splitlines()]
>>> words
[['some'], ['multiline'], ['text']]

ファイルオブジェクトを使用すると、次のようになります。

with open(z[1]) as f:  
    File = [line.split() for line in f]

ちなみに、ループするときはアンチイディオムを使用しています。イテラブルをループしたい場合は、次のようにします。

for element in iterable:
    #...

要素のインデックスも必要な場合は、次を使用しますenumerate

for index, element in enumerate(iterable):
    #...

あなたの場合:

for i, line in enumerate(File):
    File[i] = line.split()

for word in File[1]:
    print word
于 2013-05-17T17:37:54.660 に答える