gpt4 book ai didi

bash:遍历 float 列表

转载 作者:行者123 更新时间:2023-11-29 09:02:37 26 4
gpt4 key购买 nike

在 bash 脚本中,我想遍历要作为参数传递给 python 脚本的值列表。事实证明,$d$minFreq 在传递给 python 脚本时不是 float 。为什么会这样?

for d in {0.01, 0.05, 0.1}
do
for i in {1..3}
do
someString=`python scrpt1.py -f myfile --delta $d --counter $i| tail -1`
for minFreq in {0.01, 0.02}
do
for bValue in {10..12}
do
python testNEW.py $someString -d $bValue $minFreq
done
done
done
done

最佳答案

要么去掉空格

for d in {0.01,0.05,0.1}

或者不使用 {} 扩展(这里没有必要):

for d in 0.01 0.05 0.1

这同样适用于 minFreq 循环。


正如所写,

for d in {0.01, 0.05, 0.1}

变量 d 被分配了文字字符串值 {0.01,0.05,0.1} .

关于bash:遍历 float 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11902284/

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