Text Size
Text Size
Exit Full Screen
Python Mini
Show
Source Code
View Source Code in Full Screen
Open in New Tab
from turtle import Turtle t = Turtle() t.shape("turtle") t.begin_fill() t.color("magenta") for i in range(4): t.forward(100) t.right(90) t.end_fill() t.forward(100) t.left(120) t.begin_fill() t.color("green") for i in range(3): t.forward(100) t.left(120) t.end_fill() t.right(90) t.begin_fill() t.color("cyan") for i in range(4): t.forward(100) t.left(90) t.end_fill() t.left(90) t.forward(100) t.left(30) t.begin_fill() t.color("grey") for i in range(4): t.forward(100) t.left(90) t.end_fill()
ShapeMasterBadge.py
( around 33 lines python code )
Published By:
ry6100
Published on
2017-08-01T19:37:23Z
Python Mini
- an
OYOclass
application,
own your own class today
.
Run
Result
×
Error message shows here