0

我想复制和粘贴一些代码,但是哪个代码的格式太脏了。

例如

n = input()

while True:
    try:
        if (int(n) < 10):
            pass
        else:
            pass
    except:
        break

粘贴后

n = input()

while True:
    try:
        if (int(n) < 10):
            output = str(n) * 2
        else:
            pass
        
        if (int(n) < 10):
    pass
else:
    pass

    except:
        break

我想

n = input()

while True:
    try:
        if (int(n) < 10):
            pass
        else:
            pass

        if (int(n) < 10):
            pass
        else:
            pass

    except:
        break

第二个也不能像 autopep8 那样使用格式化程序。我的意思是 autopep8 可以将第二个更改为第三个。

正常吗?甚至选项是 "editor.formatOnSave": true, "editor.formatOnPaste": true

请帮我。谢谢你。祝你今天过得愉快 :)

4

1 回答 1

1

我爱上了https://pypi.org/project/black/,它会在保存之前自动在编辑器中格式化您的代码。安装简单,无需维护。只需查看如何将其安装到您的编辑器。

于 2021-01-10T12:28:39.113 回答