Here is my code, its simple, but i wanted more different, here is my code:`
weight = 21.8
#ground shipping
if weight <= 10:
cost_ground = weight * 2 + 10
elif weight <= 4:
cost_ground = weight * 3 + 10
elif weight <= 2:
cost_ground = weight * 2 + 5
else:
cost_ground = weight * 2 + 10
print(cost_ground)