代替双缩进 用于函数参数
def foo(
name
):
print('hello ' + name)
我想使用单缩进:
def foo(
name
):
print('hello ' + name)
=> 如何告诉 PyCharm 对函数参数使用单缩进?
不幸的是,下
Settings => Editor => Code Style => Python => Tabs and Indents
似乎没有额外的选项:
作为替代方案:对参数使用额外缩进的合理性是什么?
捂脸 ...它是“继续缩进”选项。