From https://neo4j.com/docs/api/python-driver/current/#example This line: ``` >>> for friend, in session.run("MATCH (a:Person {name:'Alice'})-[:KNOWS]->(x) RETURN x"): ... print('Alice says, "hello, %s"' % friend["name"]) ... Traceback (most recent call last): File "<input>", line 2, in <module> print('Alice says, "hello, %s"' % friend["name"]) TypeError: string indices must be integers ```