summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJodi Schneider <jodi.a.schneider@gmail.com>2018-11-10 20:26:36 -0600
committerGitHub <noreply@github.com>2018-11-10 20:26:36 -0600
commit6f1b2578e31cc1aee330656f7f1970491a5036bc (patch)
tree364677c500b9fa1fd37d7c94b3ce6664e1ae86cc /README.md
parent1503dae6049f0d9b14d9d7f884d8de4cb38b39a3 (diff)
downloadrdflib-6f1b2578e31cc1aee330656f7f1970491a5036bc.tar.gz
Update README.md
update syntax of Python snippet; print expects parentheses
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index e289e0b1..14405cf7 100644
--- a/README.md
+++ b/README.md
@@ -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