python输入半径求圆的面积

python输入半径求圆的面积

输入半径计算圆面积的代码:#计算圆的面积(第一行)、from math import pi(第二行)、r=float(input('输入半径的长度:'))(第三行)、area=p......