美文网首页
解决:TypeError: 'module' object is

解决:TypeError: 'module' object is

作者: 一思百解 | 来源:发表于2020-11-08 16:25 被阅读0次

    今天,在用python画图,运行到这行时plt.figure(figsize=(12,6)),提示:TypeError: 'module' object is not callable。

    解决:

    import matplotlib as plt

    替换为:

    import matplotlib.pyplot as plt

    同样的思路,以后再遇到“TypeError: 'module' object is not callable”,要看一下import这里是否正确。

    相关文章

      网友评论

          本文标题:解决:TypeError: 'module' object is

          本文链接:https://www.haomeiwen.com/subject/heehbktx.html