I need to use the cypher.execute to build a database in python for neo4j with py2neo. But my jupyther (ipython notebook) is not recognizing the << >> characters in this statement. is there an alternative?
cypher.execute("CREATE (a {name:{a}})-[:«rel»]->(b:«labels» {name:{b}})",
a="Alice", rel="KNOWS", labels=["Human Being", "Employee"], b="Bob")