Tagged Questions

Turtle is a textual syntax for RDF that allows RDF graphs to be completely written in a compact and natural text form, with abbreviations for common usage patterns and datatypes.

learn more… | top users | synonyms

6
votes
0answers
42 views

How to use Turtle sparql php

I'm trying to filter this database written in Turtle @prefix : <http://www.essepuntato.it/resource/> . @prefix vcard: <http://www.w3.org/2006/vcard/ns#> . @prefix cs: ...
4
votes
1answer
330 views

Python turtle module : help

I want to use the turtle module and I want to do : Draw a red circle, then a yellow circle underneath it and a green circle underneath that. to draw a regular hexagon. can anyone tell me ...
2
votes
1answer
492 views

Python Turtle Module- Saving an image

I would like to figure out how to save a bitmap or vector graphics image after creating a drawing with python's turtle module. After a bit of googling I can't find an easy answer. I did find a ...
2
votes
2answers
45 views

how do i automatically add records with incremental values in rdf?

i want to record anonymous users 'liking' records: user:1 vocab:likes record:123234 . user:2 vocab:likes record:124534 . is there a way to add incremental values in rdf/turtle without explicitly ...
1
vote
2answers
130 views

How can I draw a bunch of squares?

I am very new to python. I need to draw this shape for college but i find it really hard so i am trying to do square before going into that image. Anyway here is my question: How can i have 8 rows? ...
1
vote
2answers
156 views

Why ActivePython freezes after I use the turtle module?

I've installed ActivePython 3.1 and ran IDLE with -n parameter as required byt the turtle module in documentation. However when I try to use it with call such as turtle.postion(), new windows is ...
1
vote
1answer
49 views

expressing quantities in rdf

am having trouble presenting this data in triples - please help! 34 records are created with attribute "00EC" and log_id "001" 32 records are updated with attribute "00EC" and log_id "001" 31 records ...
1
vote
1answer
129 views

how do i determine if a specific triple exists using sparql?

so, if the data set is: @prefix dc: <http://purl.org/dc/elements/1.1/> . @prefix : <http://example.org/book/> . @prefix ns: <http://example.org/ns#> . :book1 dc:title ...
1
vote
1answer
735 views

How do I hide the turtle in LOGO?

How do I hide the turtle in LOGO?
1
vote
1answer
210 views

How do I change the turtle image in Small Basic?

There seem to be no property for an image to use at all, even though it has complete API for movement.
0
votes
0answers
28 views

Where can I find the Graph API Turtle serialisation documentation?

Jesse Weaver recently announced at Linked Open Data mailing list that Facebook's Graph API experimentally supports the RDF Turtle serialisation format via content negotiation (see here). However, I'm ...
0
votes
1answer
93 views

import tkinter yields error

Starting the Open Book on Python 3.1 import turtle #this yields an error from importing tkinter Script: import tkinter exit() Yields: Traceback (most recent call last): File "imptk.py", line ...
0
votes
2answers
305 views

Python Turtle graphics - how do I control when the window closes?

I have a small python script which draws some turtle graphics. When my script has finished running, the turtle screen automatically closes, so to be able to see the graphics for a while I have to use ...
0
votes
4answers
421 views

python alternative to the goto command?

Hi ok so i have a python program that is essentailly made up of turtle graphics, and it is basicly asking the user how many squares to draw, and then after each square, it adds 1 to a counter using: ...
0
votes
1answer
444 views

Reading a Turtle/N3 RDF File with Python

I'm trying to encode some botanical data in Turtle format, and read this data from Python using RDFLib. However, I'm having trouble, and I'm not sure if it's because my Turtle is malformed or I'm ...
0
votes
0answers
391 views

Python turtle module confusion

I'm trying to to add more lines to the triangle, so instead of 3 leading off there will be 5 depending on the parameter given but I really have no idea what to do at this stage and any help would be ...
-1
votes
1answer
24 views

Set picture as background in python in turtle module

I am a beginner at programming at can't seem to figure out how to use bgpic('photo.gif') in turtle. I have enclosed the 'photo.gif' in the same folder as the script. Every time I execute the program ...