运行下列Python程序,输出的结果是?( )
def jsarea(r, PI = 3.14): area = PI * r * r print(jsarea(1))
3.14
因缺失参数,不能计算
None
程序代码有错误