Can anybody help me with this python practice?
Here's the problem: Imagine you work for an e-commerce company, and you need to calculate the shipping cost for customer orders based on the weight of the packages they purchase. The cost per kilogram is $5. Task Complete the cost() function to take the weight as an argument, calculate the shipping cost based on the weight, and display it in the given format. The function call has already been provided. Input Expected output weight = 5 Shipping cost = 25 weight = 14 Shipping cost = 70 weight = 10 Shipping cost = 50 This is what I got so far: weight = int(input()) def shipping_cost(weight): print("Shipping cost:", weight*5) shipping_cost(5)