gpt4 book ai didi

python - 将两个 numpy 数组合并到一个元组列表列表中

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

我一直没弄明白。感谢您的帮助:

有:

>>> x = np.array([[1,2],[5,6]])
>>> x
array([[1, 2],
[5, 6]])
>>> y = np.array([[3,4],[7,8]])
>>> y
array([[3, 4],
[7, 8]])

想要:

>>> z = [[(1,2),(3,4)],[(5,6),(7,8)]]
>>> z
[[(1, 2), (3, 4)], [(5, 6), (7, 8)]]

最佳答案

试试这个:

x_z = map(tuple,x)
y_z = map(tuple,y)
[list(i) for i in zip(x_z, y_z)]

输出:

[[(1, 2), (3, 4)], [(5, 6), (7, 8)]]

关于python - 将两个 numpy 数组合并到一个元组列表列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54934345/

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