Saved Bookmarks
| 1. |
Write a program to calculate area of circle (python programming language) |
|
Answer» Explanation: Find the Area of a CIRCLE in python :#METHOD 1.PI = 3.14.r = FLOAT(INPUT('Enter the radius of the circle :'))area = PI * r * r.print("Area of the circle is : %.2f" %area)#method 2.import math.r = float(input('Enter the radius of the circle :'))BRAINLIEST PLEASE ^_^ |
|