如何为 VS Code 中的所有行添加 4 个空格缩进?

How to add 4 spaces indent to all lines in VS Code?

我正在使用 VS Code Python 开发。

BranchList=['BD','WE','BB','GB','MB']
if lastMonth[-2:]=='01':
    month='Jan'
elif lastMonth[-2:]=='02':
    month='Feb'
elif lastMonth[-2:]=='03':
    month='Mar'
elif lastMonth[-2:]=='04':
    month='Apr'
........

如果我想使用 'try: except' 来捕获异常(在第一行之前添加一个 try:),'try: ' 下面的所有行都应该有额外的 4 个空格缩进。为每行添加 4 个空格缩进是一项非常大的手动工作。在 VS Code 中有什么快速的方法吗?

如果您突出显示所有行并按 Tab,它们应该全部缩进。 Shift+Tab 会缩进。