TabError: inconsistent use of tabs and spaces in indentation问题解决 (ubuntu16.04+python3.6 )

前端之家收集整理的这篇文章主要介绍了TabError: inconsistent use of tabs and spaces in indentation问题解决 (ubuntu16.04+python3.6 )前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

代码

for image_file in os.listdir(test_path):
print('image_file =',image_file)

        try:
            image_type = imghdr.what(os.path.join(test_path,image_file))
            if not image_type:
                continue
        except IsADirectoryError:
            continue
报错:

# python test_yolo.py model_data/yolo.h5

File "test_yolo.py",line 118
print('image_file =',image_file)
^

TabError: inconsistent use of tabs and spaces in indentation

原因:

ubuntu(linux)下,缩进用空格(Space)键,如果用Tab键,系统报错。windows下不存在该问题。

print('image_file =',image_file) 改行缩进使用了Tab键。

解决办法:

用Tab的位置使用空格(Space)键替换。

原文链接:https://www.f2er.com/ubuntu/349860.html

猜你在找的Ubuntu相关文章