gpt4 book ai didi

python - 使用 "with"语句打印矩阵时出现 __enter__ 错误

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

我运行这个:

import numpy as np
import sys
temp = np.array([[10, 20], [30, 40]])
with np.set_printoptions(threshold=10):
print(temp)

它给我 AttributeError: __enter__我该怎么办?

最佳答案

使用这个:

>>> with np.printoptions(threshold=10):
... print(temp)
...
[[10 20]
[30 40]]

关于python - 使用 "with"语句打印矩阵时出现 __enter__ 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57790044/

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