radius = float(input("Enter the radius of the circle: "))
area = 3.14*radius*radius
circumference = 2*3.14*radius
print("AREA= " +str(round(area,2))+"\t CIRCUMFERENCE ="+str(round(circumference,2)))
To embed this project on your website, copy the following code and paste it into your website's HTML: