Redland python bindings.Unexpected打印ot三角

时间:2011-02-16 15:13:29

标签: python redland

我在python中有以下代码:

import RDF


parser = RDF.Parser()

model=RDF.Model()

stream=parser.parse_into_model(model,"file:./zoo/zoo.rdf")

list = []
for triple in model:
    print triple.subject, triple.predicate, triple.object
    list.append([ triple.subject , triple.predicate , triple.object ] )
print len(list)
for k in list:
  print k

在第一个循环中,我的rdf的语句被正确打印。但在第二个语句中,每个元素的地址都打印出来:

 < RDF.Node object at 0x7eec158c>, < RDF.Node object at 0x7eec1b2c>, < RDF.Node object at 
0x7eec1b8c>


< RDF.Node object at 0x7eec146c>, < RDF.Node object at 0x7eec606c>, < RDF.Node object at 0x7eec612c>

。 。

为什么会发生这种情况而不是打印语句?

2 个答案:

答案 0 :(得分:1)

尝试

for k in list:
    print map(str, k)

答案 1 :(得分:0)

尝试

for k in list:
  print str(k)