module 'numpy' has no attribute 'loadtxt'
时间: 2023-06-23 21:05:47 浏览: 591
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为 numpy 模块版本较低导致的。loadtxt() 函数在 numpy 1.5.0 及以上版本中才可用。
你可以尝试升级 numpy 到最新版本,或者使用其他可以读取文本文件的函数,比如 pandas 的 read_csv() 函数。如果你使用的是较老版本的 numpy,可以尝试使用 genfromtxt() 函数代替 loadtxt() 函数。
阅读全文