gpt4 book ai didi

python - 组织数据的更好方法

转载 作者:太空宇宙 更新时间:2023-11-04 10:41:54 24 4
gpt4 key购买 nike

所以我有以下循环:

for temperature in [-40,25,85]:
for voltage in [24, 28, 32]:
for power in [50,100,200]:
#measurement 1
...
#measurement 2
...

有个问题是如何组织实测数据。到目前为止,我一直在为每个循环变量在每个循环中创建一个单独的文件夹,所以如果我想在 -40°C、28V 和 100W 下获取测量 1 的数据,我将转到 ./-40/28/100。它一直运行良好,但我不禁想知道是否有更好的方法。

最佳答案

import json

dictionary = {}

for temperature in [-40,25,85]:
for voltage in [24, 28, 32]:
for power in [50,100,200]:
#measurement 1
#measurement 2..
dictionary[str((temperature,voltage,power))] = (measurement1,measurement2,...)

f = open(".../somefile.txt",'w')
f.write(json.dumps(dictionary,indent=1,sort_keys=True))
f.close()

也许 JSON 可以帮助您。

关于python - 组织数据的更好方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20106974/

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