当前位置:网站首页>Sourcery插件(自动提升代码质量)
Sourcery插件(自动提升代码质量)
2022-07-31 05:16:00 【王大队长】
目录
Sourcery的功能如标题所说,能够自动提升代码质量,话不多说,直接上例子:
示例:
我在pycharm中已经安装好了此插件,下面写一个函数将输入x夹断到0~100:
def clip(x):
if x > 100:
x = 100
if x < 0:
x = 0可以看到此插件给了我一个提示(黄色波浪线),可以将代码优化为绿色代码:

我们只需在黄色波浪线后面按Alt + Enter就能实现自动替换:
def clip(x):
x = min(x, 100)
x = max(x, 0)可以看到还是非常强大的!但是也有些许不足(毕竟是Ai修改,还不能达到特别理想的效果),比如我们将上面的if x < 0: 改成elif x < 0: 插件便检测不出来了(可以看到黄色下划线消失了)!

Sourcery官方链接:
Sourcery | Automatically Improve Python Code Quality
安装步骤(pyCharm):

这里我选择用goole账号登录(这里如果一直加载不进去就用迅雷进去):

复制你的token :
打开pycharm安装插件,安装后重启pyCharm:

将token复制进去,:
然后点击apply再点ok即可!
Sourcery支持的IDE:

边栏推荐
- js中的函数
- NFTs: The Heart of Digital Ownership
- This in js points to the prototype object
- unicloud 发布后小程序提示连接本地调试服务失败,请检查客户端是否和主机在同一局域网下
- Understanding of js arrays
- Gradle sync failed: Uninitialized object exists on backward branch 142
- TransactionTemplate 事务编程式写法
- The latest MySql installation teaching, very detailed
- VTK环境配置
- JS写一段代码,判断一个字符串中出现次数最多的字符串,并统计出现的次数JS
猜你喜欢

VS2017 connects to MYSQL

VS connects to MYSQL through ODBC (2)

Take you to understand the MySQL isolation level, what happens when two transactions operate on the same row of data at the same time?

unicloud 云开发记录

Hyper-V新建虚拟机注意事项

random.randint函数用法

通信原理——纠错编码 | 汉明码(海明码)手算详解

DC-CDN学习笔记

flutter arr 依赖
![[Cloud native] Open source data analysis SPL easily copes with T+0](/img/89/4a96358956782ef9dacf0b700b54c3.png)
[Cloud native] Open source data analysis SPL easily copes with T+0
随机推荐
function in js
Sqlite A列数据复制到B列
[Cloud native] Ribbon is no longer used at the bottom layer of OpenFeign starting from the 2020.0.X version
Several solutions for mysql startup error The server quit without updating PID file
腾讯云GPU桌面服务器驱动安装
著名网站msdn.itellyou.cn原理分析
为什么bash中的read要配合while才能读取/dev/stdin的内容
The server time zone value ‘й‘ is unrecognized or represents more than one time zone
quick-3.5 无法正常显示有混合纹理的csb文件
浅谈对分布式模式下CAP的理解
小米手机短信定位服务激活失败
SSH自动重连脚本
使用 OpenCV 提取图像的 HOG、SURF 及 LBP 特征 (含代码)
kotlin 插件更新到1.3.21
Markdown 帮助文档
powershell统计文件夹大小
浏览器查找js绑定或者监听的事件
sqlmap injection tutorial common commands
cocoscreator3.5.2打包微信小游戏发布到QQ小游戏修改
cocos2d-x 实现跨平台的目录遍历