A programmer writes the following algorithm:
def calculate_postage(weight):
if weight < 100:
cost = 1.50
else:
cost = 3.50
return cost
parcel_weight = float(input("Enter weight: "))
final_price = calculate_postage(parcel_weight)
print("Postage cost is: " + str(final_price))
Identify the name of the user-defined function.