2

助けてください。次のようなテキスト ファイルがあります。

ID: 000001
Name: John Smith
Email: jsmith@ibm.com
Company: IBM
blah1: a
blah2: b
blah3: c
ID: 000002
Name: Jane Doe
Email: jdoe@ibm.com
Company: IBM
blah1: a
blah2: b
blah3: c
ID:000003
.
.
.
etc.

各顧客の情報が 7 行にあることに注意してください。ID:000002 は次の顧客の開始を示し、000003 は次の顧客というように続きます。

出力ファイルを次のようにしたいと思います (次の行の各顧客のデータではなく、各 ID とそれに続く 7 行を列に転置します)。

ID: 000001,Name: John Smith,Email: jsmith@ibm.com,Company: IBM, blah1: a,blah2: b,blah3: c
ID: 000002,Name: Jane Doe,Email: jdoe@ibm.com,Company: IBM,blah1: a,blah2: b,blah3: c

これが最も簡単な手法かどうかはわかりませんが、リストを使用してみましたが、これは私の目的ではうまくいかないようです。私のコードがエレガントではないことはわかっていますが、これは私自身と他の 1 人のデータ操作を自動化するためのものです。機能する限り、スタイリッシュなものは必要ありません。

#!/usr/bin/python
# open file
input = open ("C:\Documents\Customer.csv","r")

#write to a new file
output = open("C:\Documents\Customer1.csv","w")

#Read whole file into data
data = input.readlines()
list = []
for line in data:
if "User Id:" in line:
    list.append(line)
if "User Email:" in line:
    list.append(line)
if "Company:" in line:
    list.append(line)   
if "Contact Id:" in line:
    list.append(line)
if "Contact Name:" in line:
    list.append(line)
if "Contact Email:" in line:
    list.append(line)
    print list
    import os
    output.write("\n".join(list))
# Close the file
input.close()
output.close()

出力ファイルにエスケープ文字が含まれており、一部の顧客が複数回追加されています。

4

3 に答える 3

0

Why does your code and input file differ? You have "ID:" vs "User Id:", "Email" vs "User Email:", etc..? Well anyways, you can do like this:

#!/usr/bin/python

# open file
input = open ("C:\Documents\Customer.csv","r")

#write to a new file
output = open("C:\Documents\Customer1.csv","w")

lines = [line.replace('\n',',') for line in input.split('ID:')]
output.write("\nID:".join(lines)[1:])

# Close files
input.close()
output.close()

Or, if you totally want to filter for specific fields in case something else pops in, like this:

#!/usr/bin/python

#import regex module
import re

# open input file
input = open ("C:\Documents\Customer.csv","r")

#open output file
output = open("C:\Documents\Customer1.csv","w")

#create search string
search = re.compile(r"""
                        ID:\s\d+|
                        Name:\s\w+\s\w+|
                        Email:\s\w+\@\w+\.\w+|
                        Company:\s\w+|
                        blah1:\s\w+|
                        blah2:\s\w+|
                        blah3:\s\w+
                        """, re.X)

#write to output joining parts with ',' and adding Newline before IDs
output.write(",".join(search.findall(input.read())).replace(',ID:','\nID:'))

# Close files
input.close()
output.close()

Take a note, in the last example it doesn't have to have 7 fields per person :)

And now with duplicates removed (order is not kept, and complete record is compared):

#!/usr/bin/python

#import regex module
import re

# open input file
input = open ("C:\Documents\Customer.csv","r")

#open output file
output = open("C:\Documents\Customer1.csv","w")

#create search string
search = re.compile(r"""
                        ID:\s\d+|
                        Name:\s\w+\s\w+|
                        Email:\s\w+\@\w+\.\w+|
                        Company:\s\w+|
                        blah1:\s\w+|
                        blah2:\s\w+|
                        blah3:\s\w+
                        """, re.X)

# create data joining parts with ',' and adding Newline before IDs    
data = ",".join(search.findall(input.read())).replace(',ID:','\nID:')

# split data into list 
# removing duplicates out of strings with set() and joining result back
# together for the output

output.write("\n".join(set(data.split('\n'))))

# Close files
input.close()
output.close()
于 2013-05-24T01:57:16.180 に答える
0
....
data = input.read()  #read it all in
people = [person.replace("\n","") for person in data.split("ID:")]
data_new = "\nID:".join(people)

output.write(data_new.strip())

最初にファイル全体を大きなチャンクとして読み込みます

次に、「ID:」でデータを分割して、リストを作成します

各アイテムの改行を何も置き換えない

「人」リストを「\nID:」で結合して、1 つの大きなテキスト ブロックを取得します

出力に書き戻します(余分な先頭の 'sstripを取り除くため)\n

于 2013-05-23T23:52:09.553 に答える