gpt4 book ai didi

python - 在 python numpy.savez 中使用变量值而不是关键字

转载 作者:行者123 更新时间:2023-11-30 23:04:02 25 4
gpt4 key购买 nike

numpy.savez

在最后一个示例中,使用 savez 和 **kwds,数组将与关键字名称一起保存。

outfile = TemporaryFile()
np.savez(outfile, x=x, y=y)
outfile.seek(0)
npzfile = np.load(outfile)
npzfile.files
['y', 'x']
npzfile['x']
array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])

我将如何使用变量的实际值,例如:

x_name = 'foo'
y_name = 'bar'

np.savez(outfile, x_name=x, y_name=y)

然后

npzfile.files
['foo', 'bar']

最佳答案

您可以创建一个字典,然后使用 ** 将其内容以关键字参数的形式传递给 np.savez。例如:

>>> x = np.arange(10)
>>> y = np.sin(x)
>>> x_name = 'foo'
>>> y_name = 'bar'
>>> outfile = TemporaryFile()
>>> np.savez(outfile, **{x_name: x, y_name: y})
>>> outfile.seek(0)
>>> npzfile = np.load(outfile)
>>> npzfile.files
['foo', 'bar']

关于python - 在 python numpy.savez 中使用变量值而不是关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33878179/

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