自动格式化python代码的工具?

前端之家收集整理的这篇文章主要介绍了自动格式化python代码的工具?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

所以在编写C/C++时,我会使用精彩的Clangformat工具,允许我编写一个loooong线并点击一个键盘快捷键,根据一个理智的风格指南轻松优雅地格式化我的线.

是否有一个等效的python工具?如果它有一个vim插件,奖励积分.

最佳答案
autopep8:

> https://github.com/hhatto/autopep8
> https://pypi.python.org/pypi/autopep8/

A tool that automatically formats Python code to conform to the PEP 8 style guide

使用:

pip install --upgrade autopep8
autopep8 --in-place --aggressive --aggressive 
原文链接:https://www.f2er.com/python/439724.html

猜你在找的Python相关文章