A man bought a second-hand scooter for ₹8000. He spent ₹700 on repairing and ₹350 on On re painting. He then sold it for ₹9500. How much did he gain or lose?
Answers
Explanation:
Given, Cost price =8000
Repair =520
New cost price =8520
Profit %=20%
Profit %=
cp
sp−cp
×100=20
⇒sp=cp+0.2cp
⇒sp=8520×1.2
sp=10,224 Rs.
He should sell the scooter for 10,224 Rs. to make a profit of 20%.
Answer:
second_hand_socoter = int(input("Enter Price of second hand socoter: " ))
reparing_cost = int(input("Enter Price of reparing cost: " ))
repanting = int(input("Enter Price of repanting: " ))
sell = int(input("Enter Price of sell: " ))
add = second_hand_socoter + reparing_cost + repanting
profit = sell - add
lose = add - sell
if sell>add:
print("You Gain Money With Price " + str(profit))
else:
print("You Lose Money With Price " + str(lose))
Explanation:
I create a python program that find the lose or gain amount based on user input