When I try to do the following in python 2.7.8 shell:
>>> import turtle
>>> turtle.demo()
I get the following error:
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
turtle.demo()
AttributeError: 'module' object has no attribute 'demo'
This is the first time in my life I try using turtle, and assumed it would be installed when installing python. I can't find it anywhere on my computer and don't know how to get it at the correct place. Can anybody please explain what I have to do to get at least the turtle.demo() working?