The Artima Developer Community
Sponsored Link

Python Answers Forum
LOGO in python?

1 reply on 1 page. Most recent reply: Mar 13, 2006 2:00 AM by rk7

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
Gabriel

Posts: 1
Nickname: optimus
Registered: Sep, 2005

LOGO in python? Posted: Oct 30, 2005 5:14 PM
Reply to this message Reply
Advertisement
As you all may remember "LOGO writer" was a program used for drawing based on a little turtle that leaved its path marked when it was moved by the user, using coordinates.

I need to create that in python for my computer science project...

Which do you think is the best way to do it:
- Using livewires
- Using pygame
- Using any other thing?

Any examples or tutorials might help... as well as your opinions... thanks


rk7

Posts: 1
Nickname: rk7
Registered: Mar, 2006

Re: LOGO in python? Posted: Mar 13, 2006 2:00 AM
Reply to this message Reply
hi,

you might look at the turtle-module: pydoc turtle

example:
import turtle
t=turtle.Pen()
t.down()
t.goto(23,0)
t.width(3)
t.goto(42,42)
t.setheadi ng(90)
t.circle(42,180)

Flat View: This topic has 1 reply on 1 page
Topic: Python coding question ( os.chroot() ) Previous Topic   Next Topic Topic: Trying to verify a user has logged in to the server

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use