#from math import * import math r_string = input("请输入半径:") r = float(r_string) c = 2*pi*r s = pi*r*r print("周长是:",c) print("面积是:",s)