gpt4 book ai didi

python - python 中的成对 vector

转载 作者:搜寻专家 更新时间:2023-10-31 02:10:48 24 4
gpt4 key购买 nike

我需要存储某些子字符串的开始和结束索引。我需要在 python 中执行此操作。什么是 C++ 成对 vector 的 Python 等价物?

最佳答案

我建议将其存储在字典(Hashmap)中

input = ['str1', 'str2', 'str3']
stored_as = {'str1': {'start': 1, 'end': 2}, 'str2': {'start': 0, 'end': 2}, 'str3': {'start': 1, 'end': 1}}

这为您提供了更好的表现形式。如果您的空间紧张,那么您可以将其存储为以下任一方式:

stored_as = [(1,2), (0,2), (1,1)]

stored_as = [[1,2], [0,2], [1,1]]

关于python - python 中的成对 vector ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44666232/

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