AttributeError: module 'numpy' has no attribute 'int'. `np.int` was a deprecated alias for the builtin `int`. To avoid this error in existing code, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
时间: 2023-10-29 18:55:16 浏览: 169
Numpy——numpy属性
这是一个错误提示,说明你在使用 numpy 模块时调用了一个已经被弃用的函数 `np.int`,最好的解决方法是使用 Python 内置的 `int` 函数代替 `np.int`。如果你需要指定精度,可以使用 `np.int64` 或 `np.int32`。如果你想了解更多相关信息,可以查看 numpy 的发行说明。
阅读全文