syllabus schedule exercises how-to people feedback music console
print "Type and run your python code here" print "="*25 import turtle t = turtle.Turtle() for c in ['red', 'green', 'yellow', 'blue']: t.color(c) t.forward(75) t.left(90)
Output: (clear)
Press Run to see the output of the code above