# -*- coding: utf-8 -*- # Demo with 'turtle' module print("A demo of the 'turtle' module is in progress !") import turtle t = turtle.Turtle() for c in ['red', 'green', 'yellow', 'blue']: t.color(c) t.forward(75) t.left(90) t.color('cyan') t.forward(75) for c in ['blue', 'yellow', 'green', 'red']: t.color(c) t.forward(75) t.right(90)