Answers for "how to draw a circle"

5

how to make circle in python

import turtle
def draw_circle(turtle,color,size,x,y):
  turtle.penup()
  turtle.color(color)
  turtle.fillcolor(color)
  turtle.goto(x,y)
  turtle.pendown()
  turtle.begin_fill()
  turtle.circle(size)
  turtle.end_fill()
square=turtle.Turtle()
square.speed(500)
draw_circle(square, "green", 50, 25, 0)
Posted by: Guest on March-04-2021
0

how to draw a circle

u cant
Posted by: Guest on May-02-2021

Browse Popular Code Answers by Language