本文主要是介绍【深度学习】plt.xlabel ‘str‘ object is not callable,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ref:
https://stackoverflow.com/questions/24120023/strange-error-with-matplotlib-axes-labels
画图的时候手欠写成了:
plt.xlabel = 'x'
实际上应该是
plt.xlabel('x')
因为已经将plt.xlable 赋值为了 ‘x‘ 字符串,所以自然就’str’ object is not callable
这篇关于【深度学习】plt.xlabel ‘str‘ object is not callable的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!