Simple square using loop with python - turtle programming

Опубликовано: 01 Октябрь 2024
на канале: Adi's Technical Aid
54
5

Simple square using loop with python - turtle programming
#short
#shortvideo
#youtubeshort
#firstyoutubeshort

Code :
import turtle
t = turtle.Turtle()
for _ in range(4):
t.forward(300)
t.left(90)