gpt4 book ai didi

python - 是否有 DolphinDB 函数用于查找向量中元素的索引?

转载 作者:太空宇宙 更新时间:2023-11-03 19:42:00 25 4
gpt4 key购买 nike

在python中,我可以使用index来查找元素的索引,例如:

# vowels list
vowels = ['a', 'e', 'i', 'o', 'i', 'u']

# index of 'e'
index = vowels.index('e')
print('The index of e:', index)

# index of the first 'i'
index = vowels.index('i')
print('The index of i:', index)

DolphinDB中有等效的函数吗?

最佳答案

使用函数find获取向量中元素的索引。如果该元素不存在,则返回-1。

vowels = ['a', 'e', 'i', 'o', 'i', 'u']
index = vowels.find('e')

关于python - 是否有 DolphinDB 函数用于查找向量中元素的索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60368295/

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