gpt4 book ai didi

python - 具有两个列表中的参数的函数

转载 作者:IT老高 更新时间:2023-10-28 22:02:21 26 4
gpt4 key购买 nike

我有两个列表 xscat 和 yscat。我希望列表理解分别在 xscat 和 yscat 中提取 x 和 y。结果列表应包含 peaks([x[0], y[0]]), peaks([x[1], y[1]])

xscat=yscat=[-1, -1.5,5]
[peaks([x,y]) for x,y in xscat,yscat]

你能找到任何使用推导的解决方案吗?或其他方式放置它( map )?

最佳答案

zip 就是你想要的:

[peaks([x,y]) for x,y in zip(xscat,yscat)]

关于python - 具有两个列表中的参数的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9184497/

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