gpt4 book ai didi

python - 试运行的方法?

转载 作者:太空狗 更新时间:2023-10-29 20:23:25 26 4
gpt4 key购买 nike

目前我的 python 代码通常是这样的:

...
if not dry_run:
result = shutil.copyfile(...)
else:
print " DRY-RUN: shutil.copyfile(...) "
...

我现在考虑写一些像干跑道方法的东西:

def dry_runner(cmd, dry_run, message, before="", after=""):
if dry_run:
print before + "DRY-RUN: " + message + after
# return execute(cmd)

但是cmd会先执行,结果交给dry_runner方法。

我怎样才能用 pythonic 方式编写这样的方法?

最佳答案

您可以使用这个通用包装函数:

def execute(func, *args):
print 'before', func
if not dry:
func(*args)
print 'after', func

>>> execute(shutil.copyfile, 'src', 'dst')

关于python - 试运行的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3279806/

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