File size: 789 Bytes
170ff0d
 
daf201d
1d336ae
daf201d
d9e3e83
1d336ae
624e20f
170ff0d
 
 
617d4e7
52b824d
 
617d4e7
511b349
 
52b824d
5ed9fe6
34df162
624e20f
34df162
 
624e20f
170ff0d
 
d66a549
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import gradio as gr

def house_saving(annual_salary, portion_saved, total_cost, portion_down_payment):
    if (annual_salary * portion_saved) / 12 > total_cost * portion_down_payment:
        return 1
    else:
        months = (total_cost * portion_down_payment) / ((annual_salary * portion_saved) / 12)
        return round(months,0)


demo = gr.Interface(
    fn=house_saving,
    inputs=[
            gr.Number(value=4), 
            "number",
            "number",
            "number"
            ],
    outputs="number",
    examples=[
        [100, 0.1, 1000, 0.2],
    ],
    title="House Saving Time Calculator",
    description="heres a house saving time calculator, estimating the number of months it takes to pay the down payment for your dream house. Enjoy!"
)

demo.launch()