gpt4 book ai didi

python - numpy:打印带缩进的数组

转载 作者:太空狗 更新时间:2023-10-30 02:20:32 34 4
gpt4 key购买 nike

我想打印带有缩进的 numpy array 用于调试。

假设我有一个数组 a = numpy.array([[1,2,3,4], [5,6,7,8]]) ,然后简单的 print(a) 将给出

[[ 63 903 942 952]
[185 332 511 893]]

现在如果我在 print("\t"+ str(a)) 中输入 \t,那么我得到

    [[ 63 903 942 952]
[185 332 511 893]]

我想拥有

    [[ 63 903 942 952]
[185 332 511 893]]

最佳答案

应该这样做:

print('\t' + str(a).replace('\n', '\n\t'))

关于python - numpy:打印带缩进的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22467695/

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