gpt4 book ai didi

python - 测量命令 : measure python script execution time

转载 作者:可可西里 更新时间:2023-11-01 14:13:33 26 4
gpt4 key购买 nike

我发现我可以用这个命令测量 Windows 上的执行时间:

Measure-Command {start-process python .\script.py -Wait}

而且效果很好。不幸的是,当我尝试运行一个带有一些(位置和可选)参数的脚本时,我收到一条错误消息,带有

Measure-Command {start-process python .\script.py file.txt 100 -Wait}

我得到错误:

Start-Process : A positional parameter cannot be found that accepts argument 'file.txt'.

没有 Measure-Command 一切正常。

我做错了什么?如何测量带参数的脚本的执行时间?

最佳答案

尝试

Measure-Command {start-process python -ArgumentList (".\script.py", "file.txt", 100) -Wait}

关于python - 测量命令 : measure python script execution time,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34837416/

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