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

发布于 2024-10-30 21:37:17 字数 187 浏览 0 评论 0原文

我现在有以下代码

if (verbose):

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

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

I have the following code now

if (verbose):

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

Is there any way to avoid the repetition of line1 and line 2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜点 2024-11-06 21:37:17
def dothisstuff():
   line 1
   line 2

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

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

def dothisstuff():
   line 1
   line 2

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

Though this might be overkill for only 2 repetitions of 2 lines. But I assume it are more then 2 lines :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文