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