Malkin wrote:
Does anyone know of any other games like this?
It is not directly a game, but ever heard about the python library turtle? Turtle (and the more efficiently written xturtle) is a library which gives you a canvas. It'll pop up when you use the first turtle-command. In the middle of the canvas you see an arrow or, well, a turtle.
This turtle can be moved around with commands such as forward, backward, turnleft, turnright and so on. While it walks, it leaves a line. The attributes of the lines can be changed too, such as how broad it is or which color it has.
Using for and while loops, you can create geometric patterns and mandalas. With if-statements, button-requests (from one of the python default libraries) and a jump-to-position command you can also create some kinda mini paint program, like "click left to spawn a circle, click right for a star and press C to clear the screen".
Overall it is an easy-to-use library which introduces the syntax of Python while staying simple and with lotsa visible results.