Computer Science, asked by RahanK, 20 hours ago

write a program to find the area of a circle

write in python class 9 thanks ​

Answers

Answered by mumuzzmummuzz
1

Answer:

sry I dont know anyways please make brain list

Answered by keshavkumarjha876
1

# Python Program to find Area Of Circle using Radius

PI = 3.14

radius = float(input(' Please Enter the radius of a circle: '))

area = PI * radius * radius

circumference = 2 * PI * radius

print(" Area Of a Circle = area + "sq ms")

print(" Circumference Of a Circle = circumference +"cms")

Similar questions