Right angled triangle using python - turtle programming
#short
#shortvideo
#youtubeshort
#firstyoutubeshort
Code :
import turtle
adrito = turtle.Turtle()
adrito.forward(100)
adrito.left(135)
adrito.forward(142)
adrito.right(225)
adrito.forward(100)
turtle.done()
コメント