gpt4 book ai didi

python - Python 中的句子拆分并使其成为有序字典

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

我想分割我的文本并将其存储以制作有序的字典

For example:

1.This is my text.
2.This is 2nd Text.

我想拆分数字和文本并将其存储在有序字典中,例如

Ordered Dict 

"1":"This is my text"
"2":"This is 2nd text"

我试过了。 split 但它对我不起作用。如何做到这一点?

d = OrderedDict()
text_data = [ "1.This is my text.","2.This is 2nd text"]
for i, f in enumerate(text_data):
id = f.split('.')
d[id] = text_data[i]
print(i, " :: ", id, " =>\n", d[id], "\n" + "*" * 100 + "\n")

我哪里出错了?制作 OrderedDict

最佳答案

你们很接近。按点分割字符串后,使用索引访问元素。

例如:

from collections import OrderedDict

d = OrderedDict()
text_data = [ "1.This is my text.","2.This is 2nd text"]
for i, f in enumerate(text_data):
val = f.split('.') #str.split
d[val[0]] = val[1] #Use Index.

for k, v in d.items():
print(k, v)

关于python - Python 中的句子拆分并使其成为有序字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52160520/

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