gpt4 book ai didi

python - 在 python 中包装一个 numpy 数组

转载 作者:太空狗 更新时间:2023-10-29 17:31:41 25 4
gpt4 key购买 nike

我在 python 中使用 numpy 数组,并试图更好地可视化它们以查看我正在使用的内容。当数组换行到下一行时,有没有办法改变?例如,在终端窗口中,我有足够的列在一行中显示 0-49,但当我转换为数组数据类型时,它会自动换行。

>>> tmp.shape
(2, 50)
>>> print tmp
[[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
48 49]
[50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
98 99]]
>>>

最佳答案

http://docs.scipy.org/doc/numpy/reference/generated/numpy.set_printoptions.html

默认情况下,Numpy 在显示数组时仅打印 75 个字符。您可以使用 numpy.set_printoptions() 更改它

例如。我将我的终端设置为显示 132x43 并得到了这个:

>>> import numpy as np
>>> np.set_printoptions(linewidth=132)
>>> a = np.arange(100).reshape(2,50)
>>> a
array([[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30,
31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49],
[50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99]])

关于python - 在 python 中包装一个 numpy 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8373197/

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