gpt4 book ai didi

python - 在 2 个制表符分隔的文本文件中搜索和编辑值 python 3

转载 作者:太空宇宙 更新时间:2023-11-03 16:39:41 26 4
gpt4 key购买 nike

我正在尝试创建一个程序,该程序将在文本文件的第三列中查找高于 353.7000 的值,并将其更改为 353.7000

我知道我遇到的一个障碍是文件在列之间由 2 个制表符分隔。这就是为什么我尝试使用 DictReader 来获取字段名称并将它们传递给 DictWriter,但我显然没有成功地实现这一点。

目前,程序仅获取数据文件并将其设为空白。没有错误或者只是将编辑的文件留空。在几个版本中(我没有像傻瓜一样保存副本),我意识到它是两个制表符分隔的问题,并且我收到了值错误。

维护文本文件的格式至关重要,因为它必须由需要该格式的现有程序读取。

这是an example数据文件。

代码如下:

import os
import sys
import csv

AMplateNum = input("Please Scan AM-DNA plate barcode AM******-DNA: ")
NormFileName = AMplateNum + ".txt"
FileToChange = "E:\\NormalizeData\\" + NormFileName
#this prompts user to scan in AM barcode then builds the file path

def check_value_to_edit(value):
if float(value) > 353.7000:
value = "353.7000"
return value
else:
return value
#check_value_to_edit evaluates a "value" as a float and changes it to 353.7
#if the value exceeds it
def get_destination_dictwriter(file):
with open(FileToChange, 'r') as source:
csv_source = csv.DictReader(source, delimiter='\t')
fieldnames = csv_source.fieldnames
dictwriter = csv.DictWriter(file, fieldnames=fieldnames)
return dictwriter

destination = open(FileToChange, 'w', newline='')
csv_destination = get_destination_dictwriter(destination)

with open(FileToChange, 'r') as source:
csv_source = csv.DictReader(source, delimiter='\t')
for row in csv_source:
row["Concentration"] = check_value_to_edit(row)
csv_destination.writerow(row)


destination.close()

最佳答案

这是我在评论中提到的两种方法。

from csv import DictReader


def printdictlist(dl):
for i in dl:
print('--------------')
for k, v in i.items():
print('{0} - {1}'.format(k, v))

''' Method 1 - replace double tab '''
with open('dbltab.csv') as f:
dr = DictReader((line.replace('\t\t', '\t') for line in f), delimiter='\t')

printdictlist(dr)

''' Method 2 - roll your own parser '''
with open('dbltab.csv') as f:
try:
topline = next(f).strip().split('\t\t')
except StopIteration:
pass

d = [dict(zip(topline, line.strip().split('\t\t'))) for line in f]

printdictlist(d)

关于python - 在 2 个制表符分隔的文本文件中搜索和编辑值 python 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36928025/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com