python应用题 计算球体表面积和体积_python


提示代码:


#请在_____完善一行代码
PI = 3.14
r = eval(input())
S = ______ # 球体表面积
V = ______ #球体体积
print("______".format(S,V))