import mathradius = float(input("Enter the radius of the circle: ")) area = math
23-03-2024
import math
radius = float(input("Enter the radius of the circle: "))
area = math.pi * radius * radius
print("Area:", area)
Copyrights © 2024 letsupdateskills All rights reserved