Computer Science, asked by lahu12, 11 months ago

write program for it

Attachments:

Answers

Answered by tamaghnadey1916
2

Answer:

what is your question man?

you need the perimeter or area of this shape or do you need me to draw this shape?

if you need the perimeter or area then check the attachment. I did it by plane geometry..cause I don't think that it would also need computer science to solve it.

But if you want me to draw the shape then I am here to draw it MATE...

your code in Python:

#I have taken each unit as 10 turtle pixels in computer for you to enlarge the shape

import turtle

t=turtle.Turtle ()

t.color ("Blue")

t.begin_fill ()

t.seth (180)

t.fd (250)

t.seth (90)

t.circle (150,90)

t.rt (90)

t.fd (50)

t.circle (-200,180)

t.fd (200)

t.end_fill ()

t.ht ()

#run this program in IDLE and you will get your shape

I hope it helps you and Don't forget to mark me the BRAINLIEST

THANK YOU

Attachments:
Similar questions