python 编译错误TypeError: 'builtin_function_or_method' object has no attribute '__getitem__'

来源:互联网 发布:淘宝直播刷粉丝软件 编辑:程序博客网 时间:2024/06/08 04:26
import matplotlib.pyplot as pltplt.plot(arange[10])
#修改为plt.plot(arange(10))

#出现 TypeError: 'builtin_function_or_method' object has no attribute '__getitem__'

#原因是内置函数或方法的对象没有对应属性'__getitem__'

阅读全文
0 0
原创粉丝点击