Python Program to Find Area of Circle

preview_player
Показать описание
Hi,

In this video I tried to explain Python Program to Find Area of Circle

Python Scripts
======================

Python Functions Solved
==========================

Python Programs Solved
============================

area of circle is equals to pi multiplied by radius square.
area = pi * (radius ^ 2)

Below is the program to find are of a circle
===========================
from math import pi

radius = float(input("Enter Radius of Circle : "))
area = pi * (radius ** 2)
print("Area of Circle is : ", area)

Hope you like this video. Thank you for watching.
Рекомендации по теме
welcome to shbcf.ru