某快递公司收费标准表
该Python程序代码如下所示,请完善程序实现计算快递运费的功能。
#计算快递运费
import math
weight=float(input("请输入快递重量(kg): ")) #输入的值须大于零
if weight<=1:
money=9
elif
money=11
money=14
else:
money=14+2 *math. ceil(weight-5)
print("你需支付的快递运费是: " , money, "元")