filmov
tv
Code 39: Python program to find the area of a circle | 365 days of Code

Показать описание
Python program to find the area of a circle.
Formula: Area = 3.14 X r X r
Code -
def area(radius):
return 3.14 * radius * radius
print(area(5))
Formula: Area = 3.14 X r X r
Code -
def area(radius):
return 3.14 * radius * radius
print(area(5))