Sunday, August 30, 2020

write a python Program drawing triangle shape using turtle

import turtle

turtle.forward(200)

turtle.left(90)

turtle.forward(200)

turtle.left(135)

c =((200**2)+(200**2))**0.5

turtle.forward(c) 

No comments:

Post a Comment