移除 VScode 中 autopep8 的最大行长度限制 Posted on 2022-03-30 | In Python 方法一 在 settings.json 中加入以下设置: 1234"python.formatting.provider": "autopep8", "python.formatting.autopep8Args": [ "--max-line-length=200" ], 方法二 按 Ctrl + , 打开设置 搜索 python.formatting.autopep8Args 点击 Add Item 写入 --max-line-length=200