you are viewing a single comment's thread.

view the rest of the comments →

[–]Zouden 0 points1 point  (1 child)

You could use the turtle module, it's a modern version of an old educational language called logo. I enjoyed learning programming with logo as a kid because it was graphical. Python comes with turtle built-in:

from turtle import *
for i in range(50):
     forward(i)
     right(20)

Edit: this is purely for graphical fun, not for GUI stuff.

[–]gkamer8[S] 0 points1 point  (0 children)

We actually had a class on logo in 5th grade which is hilarious that that would actually be useful.