Find the best answers to your questions at Westonci.ca, where experts and enthusiasts provide accurate, reliable information. Get expert answers to your questions quickly and accurately from our dedicated community of professionals. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

i need the full code for 6.1.3 code hs circles and squares please answer please help

I Need The Full Code For 613 Code Hs Circles And Squares Please Answer Please Help class=

Sagot :

In this exercise we have to use the knowledge in computational language in python  to write a code with circles and squares.

how to draw geometric figures in python?

inputs = 100

radius

   draw_circle(radius);

   pendown()

   begin_fill()

   circle(radius)

   end_fill()

   penup()

left(90)

forward(radius*2)

right(90)  

penup()

setposition(0,-200)

color("gray")

bottom_radius = int(input("What should the radius of the bottom circle be?: "))

draw_circle(bottom_radius)

draw_circle(bottom_radius)

See more about python at brainly.com/question/18502436

View image lhmarianateixeira