导入matplotlib.pyplot缩进问题

时间:2018-09-17 15:38:06

标签: python matplotlib indentation

我是python的新手,想尝试使用pyplot做几件事(我的文件名为main.py)。

import matplotlib.pyplot as plt
import numpy as np

if __name__ == '__main__':
    data = open("article1.txt", "r")
    dict = {}
    ...
    ...

该代码昨天确实运行良好。但是今天,当我启动它时,出现以下错误:

IndetationError: unexpected indent (transforms.py, line 1)

随即打开一个名为artist.py的文件,并突出显示以下行:

from .transforms import Bbox, IdentityTransform, TransformedBbox, \

我不知道这里发生了什么,如果有人可以帮助我解决这个问题,我将非常高兴。

1 个答案:

答案 0 :(得分:1)

您确定您实际上正在运行良好的代码吗?

IndetationError: unexpected inden (transforms.py, line 1)

^^这告诉您在transforms.py的第1行有缩进错误^^

from .transforms import Bbox, IdentityTransform, TransformedBbox, \
首先,您应该删除“。”转换之前,最后加上“ \”,就像这样:

from transforms import Bbox, IdentityTransform, TransformedBbox

您说的是artist.py正在打开,这就是为什么我问您是否正在运行良好的代码。看来您正在运行artist.py? ; D