diff options
author | Jodi Schneider <jodi.a.schneider@gmail.com> | 2018-11-10 20:26:36 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-10 20:26:36 -0600 |
commit | 6f1b2578e31cc1aee330656f7f1970491a5036bc (patch) | |
tree | 364677c500b9fa1fd37d7c94b3ce6664e1ae86cc /README.md | |
parent | 1503dae6049f0d9b14d9d7f884d8de4cb38b39a3 (diff) | |
download | rdflib-6f1b2578e31cc1aee330656f7f1970491a5036bc.tar.gz |
Update README.md
update syntax of Python snippet; print expects parentheses
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ g=rdflib.Graph() g.load('http://dbpedia.org/resource/Semantic_Web') for s,p,o in g: - print s,p,o + print (s),(p),(o) ``` The components of the triples are URIs (resources) or Literals |