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 w=Turtle() w.color("green") w.begin_fill() for counter in range(4): w.forward(150) w.left(-90) w.end_fill() w.color("blue") w.begin_fill() for counter in range(4): w.forward(150) w.left(90) w.end_fill() from turtle import Turtle w=Turtle() w.color("red") w.begin_fill() for counter in range(4): w.forward(-150) w.left(90) w.end_fill() from turtle import Turtle w=Turtle() w.color("black") w.begin_fill() for counter in range(4): w.forward(-150) w.left(-90) w.end_fill()
j.py
( around 30 lines python code )
Published By:
BM4981
Published on
2021-12-23T18:42:44Z
Python Mini
- an
OYOclass
application,
own your own class today
.
Run
Result
×
Error message shows here