今天,在用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这里是否正确。
今天,在用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
网友评论