标签: python
我正在学习Python,并正在寻找一种IDE,该IDE自动格式化我的代码并在运算符周围添加空格。因此,一旦我按下回车键,x = 2 + 2就变成x = 2 + 2。我曾经使用其他语言的IDE来整理这样的代码。是否有任何python IDE可以做到这一点?
myvariable=2 # I want it to auto format to myvariable = 2 upon hitting return