1 问题
在使用命令行运行python
文件时,出现以下错误:
TabError: Inconsistent use of tabs and spaces in indentation
但是代码什么的都没有问题,最后发现是格式的问题。因为python
中默认是使用缩进进行区分代码的,所以如果使用了tab
键进行缩进代码,那就回报这个错误。
2 解决方法
用空格代替tab
即可。
写在最后
欢迎大家关注鄙人的公众号【麦田里的守望者zhg】,让我们一起成长,谢谢。
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment