# -*- coding: utf-8 -*- import random as rd import turtle as tt win = tt.Screen() ###### tt.setup(0.85, 0.85) tt.shape("turtle") tt.speed(0) turtleshape = ['arrow', 'turtle', 'circle', 'square', 'triangle', 'classic'] tt.pu() for i in range(5): for j in range(5): tt.shape(turtleshape[rd.randint(0,len(turtleshape)-1)]) tt.color(rd.random(), rd.random(), rd.random()) tt.stamp() tt.goto(i*50, j*50) ###### win.exitonclick()