使用py2neo创建节点时出错:关键字不能为表达式

时间:2019-12-11 10:27:01

标签: python python-3.x neo4j py2neo property-graph

from py2neo import Graph, Node, Relationship
l=["Vipul", "Vithal", "Yoga"]
hasage=["hasAge", "hasAge", "hasAge"]
age=[24,31,26]

g = Graph(password="Abc123")

tx = g.begin()
for item in l:
    Vithal = Node("item", name=l[l.index(item)], hasage[l.index(item)]=age[l.index(item)])
    tx.create(Vithal)
    tx.commit()

我遇到错误:

  

Vithal = Node(“ item”,name = l [l.index(item)],hasage [l.index(item)] = age [l.index(item)])

     

SyntaxError:关键字不能是表达式

我正在尝试使用预定义列表中的值为节点创建属性名称。

0 个答案:

没有答案