Spaces:
Sleeping
Sleeping
| import math | |
| # Get radius from user | |
| r = float(input("Enter the radius: ")) | |
| # Calculate the area | |
| area = math.pi * (r**2) | |
| # Print the result | |
| print("The area of the circle is:", area) | |
| import math | |
| # Get radius from user | |
| r = float(input("Enter the radius: ")) | |
| # Calculate the area | |
| area = math.pi * (r**2) | |
| # Print the result | |
| print("The area of the circle is:", area) | |