gpt4 book ai didi

python - 仅在 python 中使用更快的 for 循环

转载 作者:行者123 更新时间:2023-12-05 01:26:04 24 4
gpt4 key购买 nike

<分区>

我正在处理一个大数据集,基本上是这样的:

test = np.random.rand(int(1e7))-0.5
def test0(test):
return [0 if c<0 else c for c in test]

这是在做什么:

def test1(test):
for i,dat in enumerate(test):
if dat<0:
test[i] = 0
else:
test[i] = dat
return test

有没有办法修改 test0 以跳过 else 请求,所以我这样工作:

def test1(test):
for i,dat in enumerate(test):
if dat<0: test[i] = 0
return test

提前致谢!

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