gpt4 book ai didi

python - 有没有办法在 rdflib 中迭代地将列表添加到图形中?

转载 作者:行者123 更新时间:2023-12-04 10:33:14 24 4
gpt4 key购买 nike

我有一些文字列表,我想将它们作为 rdf:lists 添加到图表中。我可以使用 rdflib.collection.Collection 毫无问题地读取 rdf:lists,但我无法将这些列表添加到其他图形,或从 python 列表迭代生成 rdf:list。

rdflib 有这样的功能吗?

更新:我回顾了文档并找到了使用 Collection 的解决方案。


from rdflib.graph import Graph, BNode, Collection, Literal, RDF, Namespace
listName = BNode()
EX = Namespace('http://www.example.org/')
g.bind('ex', EX)
g = Graph()
listo = [1,2,356,4]
c = Collection(g,EX.name,[Literal(x) for x in listo])


最佳答案

如果 c = Collection(g,EX.name,[Literal(x) for x in listo])解决了问题,请将其标记为已解决,以便人们知道如果他们有相同的问题,请访问它以获得答案,谢谢!

关于python - 有没有办法在 rdflib 中迭代地将列表添加到图形中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60311124/

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