我想复制和粘贴一些代码,但是哪个代码的格式太脏了。
例如
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
请帮我。谢谢你。祝你今天过得愉快 :)