Answers for "python code for 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

Area of a Circle in Python

R = float(input())

Area =  3.14159 * R * R

print("A=%0.4f" %Area)
Posted by: Guest on June-28-2021

Python Answers by Framework

Browse Popular Code Answers by Language