This is my website. Here you are taught computer programming. Here you will find free projects. You will get built-in coding from where you can copy and use.
Get link
Facebook
X
Pinterest
Email
Other Apps
How to find area of a circle using python
👇
PI = 3.14
r = float(input("Enter the radius of a circle:"))
area = PI * r * r
print("Area of a circle = %.2f" %area)
Comments
Post a Comment
If you have any query please comment below