Computer Science, asked by bmalik6270, 5 months ago

Write a program to input the cost price and the selling price of an article. If the selling price is more than the cost price then calculate and display actual profit and profit %. Otherwise calculate and display actual loss and loss %. If the cost price and the selling price are equal, then display the message "Neither profit nor loss".

Answers

Answered by TanushreeSardar
3

Explanation:

Python Program to Calculate Profit or Loss actual_cost = float(input(" Please Enter the Actual Product Price: ")) sale_amount = float(input(" Please Enter the Sales Amount: ")) if(actual_cost > sale_amount): amount = actual_cost - sale_amount print("Total Loss Amount = {0}".

Hope it is helpful to u..

plz mark me as brainliest

Similar questions