В основном я хочу скопировать комментарии из одного файла и добавить его к другим данным.Лучший способ «скопировать только комментарии из одного файла» и «добавить его в другой файл» с помощью python
Файл 'data_with_comments.txt'
может быть получен из Pastebin: http://pastebin.com/Tixij2yG
И это выглядит следующим образом:
# coating file for detector A/R
# column 1 is the angle of incidence (degrees)
# column 2 is the wavelength (microns)
# column 3 is the transmission probability
# column 4 is the reflection probability
14.2000 0.300000 8.00000e-05 0.999920
14.2000 0.301000 4.00000e-05 0.999960
14.2000 0.302000 2.00000e-05 0.999980
14.2000 0.303000 2.00000e-05 0.999980
14.2000 0.304000 2.00000e-05 0.999980
14.2000 0.305000 3.00000e-05 0.999970
14.2000 0.306000 5.00000e-05 0.999950
Теперь у меня есть еще один файл данных 'test.txt'
который выглядит следующим образом:
300.0 1.53345164121e-32
300.1 1.53345164121e-32
300.2 1.53345164121e-32
300.3 1.53345164121e-32
300.4 1.53345164121e-32
300.5 1.53345164121e-32
Требуемая мощность:
# coating file for detector A/R
# column 1 is the angle of incidence (degrees)
# column 2 is the wavelength (microns)
# column 3 is the transmission probability
# column 4 is the reflection probability
300.0 1.53345164121e-32
300.1 1.53345164121e-32
300.2 1.53345164121e-32
300.3 1.53345164121e-32
300.4 1.53345164121e-32
Один из способов сделать это:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Author : Bhishan Poudel
# Date : Jun 18, 2016
# Imports
from __future__ import print_function
import fileinput
# read in comments from the file
infile = 'data_with_comments.txt'
comments = []
with open(infile, 'r') as fi:
for line in fi.readlines():
if line.startswith('#'):
comments.append(line)
# reverse the list
comments = comments[::-1]
print(comments[0])
#==============================================================================
# preprepend a list to a file
filename = 'test.txt'
for i in range(len(comments)):
with file(filename, 'r') as original: data = original.read()
with file(filename, 'w') as modified: modified.write(comments[i] + data)
В этом методе мы должны открыть файл много раз, и это не является эффективным, если файл данных очень велик.
Есть ли лучший способ сделать это?
Ссылки по теме следующие:
Appending a list to the top of Pandas DataFrame output
Prepend line to beginning of a file
Python f.write() at beginning of file?
How can I add a new line of text at top of a file?
Prepend a line to an existing file in Python
Эти комментарии в первом файле ... все они наверху или вам нужны все комментарии по всему файлу? – tdelaney
@tdelaney Я хочу только комментарии (без данных) от input1 и помещать эти комментарии поверх ввода2 для создания вывода (такого же или отличного от input2). –