Python, Python Code

How to Calculate the Area of the Circle using Python

Less than a minute to read
print("PROGRAMME 3 FOR AREA OF A CIRCLE ")
a1=float(input("ENTER VALUE OF RADIUS\n"))
z = 3.14*(a1**2)
print("THE AREA OF A CIRCLE WITH RADIUS " + str(a1) + " IS " + str(z) + " cm^2")

Output Below


Leave a Reply

Your email address will not be published. Required fields are marked *

Sign up for our Newsletter

Join our newsletter and get resources, curated content, and design inspiration delivered straight to your inbox.

Related Posts