python-by-example-150-chall.../challenges27-34/challenge-031.py
2019-07-17 09:56:46 +03:00

6 lines
102 B
Python

import math
radius = float(input('Enter circle radius : '))
area = math.pi * (radius**2)
print(area)