mauvb21 commited on
Commit
69826ea
·
verified ·
1 Parent(s): 973302a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,7 +17,7 @@ r_d = A * (1 + y/(12*100))**z
17
 
18
  r_c = A * np.exp(y*z/(12*100))
19
 
20
- future_value = A * ((1 + Y) ** T)
21
 
22
  new_dict = {"Año": z,
23
  "Retorno Discreto": r_d,
@@ -28,4 +28,4 @@ df.columns = new_dict.keys()
28
 
29
  st.dataframe(df)
30
 
31
- st.write(f"En {T} tendrás $ {future_value}")
 
17
 
18
  r_c = A * np.exp(y*z/(12*100))
19
 
20
+ future_value = A * ((1 + y) ** T)
21
 
22
  new_dict = {"Año": z,
23
  "Retorno Discreto": r_d,
 
28
 
29
  st.dataframe(df)
30
 
31
+ st.write(f"En {T} tendrás un valor futuro de $ {future_value}")