如何使用多行字符串参数处理嵌套函数调用的重新格式化
How to handle reformatting of nested function calls with multi line string arguments
我们使用配置文件中的 multi-line-unwrap
选项,使用 oitnb
设置了 python 代码库的自动格式化。在此之前,我们对所有带有 --meld
的文件进行了初始传递,并插入了适当的 fmt: no
注释。
虽然我们使用解包选项,但这些注释最常插入带有 .format()
功能的圆形多行字符串。此重新格式化而无需更改:
print('first: {a}\nsecond: {b}\nthird: {c}'.format(a=1, b=2, c=3))
但我们无法真正看到打印的元素是否对齐。我们倾向于使用:
print("""\
first: {a}
second: {b}
third: {c}
""".format(a=1, b=2, c=3))
但这会被 oitnb
破坏成:
print("""\
first: {a}
second: {b}
third: {c}
""".format(
a=1, b=2, c=3
)
)
当此类打印在函数或 class 方法中时,情况更糟,因为我们随后用 dedent
:
换行
def main():
print(dedent("""\
first: {a}
second: {b}
third: {c}
""".format(a=1, b=2, c=3)))
我们也可以展开 format
参数吗?或者新代码的一些其他解决方案,这样我们就不需要使用 fmt 注释了?
没有解包附加到多行字符串的方法的选项,但我会考虑解包(或添加一个新选项来这样做)。解包内部具有多行字符串的嵌套例程将更加困难。
目前 IMO 最好的方法是将字符串分配给一个变量,名称足够短,不会导致函数调用行换行:
def main():
fmt_s = """\
first: {a}
second: {b}
third: {c}
"""
print(dedent(fmt_s.format(a=1, b=2, c=3)), end="")
重新设置相同的格式(假设您没有将行长设置为非常低的值,也是如此:
def main():
fmt_s = dedent("""\
first: {a}
second: {b}
third: {c}
""")
print(fmt_s.format(a=1, b=2, c=3), end="")
请注意这两个版本 dedent
在应用之前 .format()
。 我发现他的几乎总是你想要的,因为它阻止你拥有在属于 format
-arguments 的任何换行符之后包含与多行字符串一样多的空格作为前导空格。 format
-ting.
之后你的例子缩进了
我们使用配置文件中的 multi-line-unwrap
选项,使用 oitnb
设置了 python 代码库的自动格式化。在此之前,我们对所有带有 --meld
的文件进行了初始传递,并插入了适当的 fmt: no
注释。
虽然我们使用解包选项,但这些注释最常插入带有 .format()
功能的圆形多行字符串。此重新格式化而无需更改:
print('first: {a}\nsecond: {b}\nthird: {c}'.format(a=1, b=2, c=3))
但我们无法真正看到打印的元素是否对齐。我们倾向于使用:
print("""\
first: {a}
second: {b}
third: {c}
""".format(a=1, b=2, c=3))
但这会被 oitnb
破坏成:
print("""\
first: {a}
second: {b}
third: {c}
""".format(
a=1, b=2, c=3
)
)
当此类打印在函数或 class 方法中时,情况更糟,因为我们随后用 dedent
:
def main():
print(dedent("""\
first: {a}
second: {b}
third: {c}
""".format(a=1, b=2, c=3)))
我们也可以展开 format
参数吗?或者新代码的一些其他解决方案,这样我们就不需要使用 fmt 注释了?
没有解包附加到多行字符串的方法的选项,但我会考虑解包(或添加一个新选项来这样做)。解包内部具有多行字符串的嵌套例程将更加困难。
目前 IMO 最好的方法是将字符串分配给一个变量,名称足够短,不会导致函数调用行换行:
def main():
fmt_s = """\
first: {a}
second: {b}
third: {c}
"""
print(dedent(fmt_s.format(a=1, b=2, c=3)), end="")
重新设置相同的格式(假设您没有将行长设置为非常低的值,也是如此:
def main():
fmt_s = dedent("""\
first: {a}
second: {b}
third: {c}
""")
print(fmt_s.format(a=1, b=2, c=3), end="")
请注意这两个版本 dedent
在应用之前 .format()
。 我发现他的几乎总是你想要的,因为它阻止你拥有在属于 format
-arguments 的任何换行符之后包含与多行字符串一样多的空格作为前导空格。 format
-ting.