
January 21st, 2013, 09:53 AM
|
|
Registered User
|
|
Join Date: Jan 2013
Posts: 1
Time spent in forums: 18 m 27 sec
Reputation Power: 0
|
|
|
Unable to get the Python turtle to work
I am very new to Python and i am working through Python for kids just published.
I am running windows 8 and when i type in to Python shell to activate the Turtle window it appears behind the python shell window which displays the following message.
"Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import turtle
>>> t=turtle.pen()
>>> t.forward(50)
Traceback (most recent call last):
File "<pyshell#2>", line 1, in <module>
t.forward(50)
AttributeError: 'dict' object has no attribute 'forward'
>>>
|