gpt4 book ai didi

python - 没有 Yield 的上下文管理器

转载 作者:太空狗 更新时间:2023-10-29 21:49:21 24 4
gpt4 key购买 nike

我能否有一个偶尔不产生的上下文管理器,在这种情况下,with 语句中的代码根本不会执行?

import contextlib

@contextlib.contextmanager
def MayNotYield(to_yield):
if to_yield:
yield

with MayNotYield(True):
print 'This works.'

with MayNotYield(False):
print 'This errors.'

我可以要求用户用 try-catch 包装 with 语句,但这不是首选。我也可以执行以下操作,但它也很丑陋。

import contextlib

@contextlib.contextmanager
def AlwaysYields(to_yield):
if to_yield:
yield 1
else:
yield 2

with AlwaysYields(True) as result:
if result == 1:
print 'This works.'

最佳答案

另一种选择是只使用常规生成器而不是上下文管理器;一个普通的生成器不会有这个限制。但是你必须将它与“for”结构一起使用,而不是使用“with”:

def MayNotYield(to_yield):
if to_yield:
yield

for _ in MayNotYield(True):
print('This prints.')

for _ in MayNotYield(False):
print('This does not.')

关于python - 没有 Yield 的上下文管理器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34519706/

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