# Example of using a module in Python import math radius = 5 area = math.pi * math.pow(radius, 2) print("Area of Circle:", area) # Output: Area of Circle: 78.53981633974483