Learn practical skills, build real-world projects, and advance your career

xyz

Use the "Run" button to execute the code.

!pip install jovian --upgrade --quiet
import jovian
# Execute this to save new versions of the notebook
jovian.commit(project="xyz")
[jovian] Updating notebook "manayousuf/xyz" on https://jovian.ai [jovian] Committed successfully! https://jovian.ai/manayousuf/xyz
price_of_coat = 10000
price_of_saree = 15000
amount_given = 55000
amount_returned = amount_given -(price_of_coat + price_of_saree)
print (amount_returned)
30000