My issue
fetching wrong answer in output terminal
My code
# Update your code below this line
# Declare variables and assign values
radius = 8.9
pi = 3.14
# Calculate the area of the circle
area = pi * (radius ** 2)
# Output the area
print("Area of a circle is", area, "square cm")
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone