gpt4 book ai didi

python - 在 Fabric 中以非详细模式添加 with 语句 (Python)

转载 作者:太空宇宙 更新时间:2023-11-03 19:31:31 25 4
gpt4 key购买 nike

我现在有以下代码

if (verbose):

with hide('running', 'stdout', 'stderr'):
line 1
line 2
else:
line 1
line 2

有什么办法可以避免第1行和第2行的重复吗?

最佳答案

def dothisstuff():
line 1
line 2

if (verbose):
with hide('running', 'stdout', 'stderr'):
dothisstuff()
else:
dothisstuff()

尽管对于 2 行仅重复 2 次来说这可能有点过分了。但我认为它超过 2 行:)

关于python - 在 Fabric 中以非详细模式添加 with 语句 (Python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5594836/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com