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 f = Turtle() f.color("red") f.begin_fill() for counter in range(4): f.fd(100) f.lt(90) f.end_fill() f.color("grey") f.begin_fill() for counter in range(4): f.fd(100) f.rt(90) f.end_fill() f.color("green") f.begin_fill() for counter in range(4): f.rt(90) f.fd(100) f.end_fill() f.color("blue") f.begin_fill() for counter in range(4): f.lt(90) f.fd(100) f.end_fill()
squaresquare.py
( around 26 lines python code )
Published By:
Valencia868
Published on
2023-01-11T17:19:09Z
Python Mini
- an
OYOclass
application,
own your own class today
.
Run
Result
×
Error message shows here