python问题求大神看看

求解
2024-10-31 08:22:13
推荐回答(1个)
回答1:

import math

r = float(input('Please input the radius of circle:'))


def circlearea(r):
    if isinstance(r, float):
        return math.pi * r ** 2
    else:
        return -1