import math # 引入math库 for i in [1, 2, 4, 9, 10, 13]: # 遍历半径 print("%.2f" % (4 * math.pi * i * i)) # 使用.2f限制位数,计算并打印 pass # 使用占...