用Sublime搭建了Python的开发环境,粘来了一段Python代码,
发现各种报错,都是一些格式控制方面的问题,记录如下:
[W] PEP 8(E225):missing whitespace around operator
在运算符的两边缺少空格[W] PEP 8(E501):line too long(150>79 characters)
一行代码过长[W] PEP 8(E131):continue line unaligned for hanging indent
缩进不对[V] PEP 8(W291):trailing whitespace
多余的空格[W] PEP 8(E231):missing whitespace after ':'
冒号后缺少空格[E] unexpected indent
缩进不对[W] PEP 8(E101):indentation contains mixed spaces and tabs
空格和制表符混用[V] PEP 8(W191):indentation contains tabs
缩进包含制表符[W] PEP 8(E231):missing whitespace after ','
逗号后缺少空格[W] PEP 8(E227):missing whitespace around bitwise or shift operator
位运算符或移位运算符两边缺少空格