日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

PyCharm 代码格式化工具:black

發布時間:2023/12/19 编程问答 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PyCharm 代码格式化工具:black 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

black 簡介

自動的代碼格式化工具,兼容 pep8,項目地址為:

black項目地址

官方給出的簡介:

Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.

Blackened code looks the same regardless of the project you’re reading. Formatting becomes transparent after a while and you can focus on the content instead.

Black makes code review faster by producing the smallest diffs possible.

安裝命令

pip3 install black

使用方法

終端中直接運行

在終端中直接將 black 作為命令來運行,如下截圖所示:

運行成功會有輸出提示格式化情況。

PyCharm中配置快捷方式運行

打開路徑:

PyCharm→Preferences→Tools→External tool

點擊+ 后,輸入下面的配置:

# Program $PyInterpreterDirectory$/python3 # Arguments -m black $FilePath$ # Working directory $ProjectFileDir$

然后配置快捷鍵,打開下面的目錄

PyCharm→Preferences→keymap→External Tools→black

右鍵點擊 Add Keyboard Shortcut ,如下圖設置快捷鍵:

成功后,運行快捷方式,會直接格式化你所在窗口的 .py 文件。同樣在終端中會顯示格式化結果。

PEP8 代碼格式

可以參考如下博客:
PEP8簡介

總結

以上是生活随笔為你收集整理的PyCharm 代码格式化工具:black的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。