bikas commited on
Commit
42e355f
1 Parent(s): 1f6c124

Currency Converter 2nd Deployment

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ st.title("Currency Converter")
10
  currencies = get_currencies()
11
 
12
  # Input elements
13
- amount = st.number_input("Enter the amount to be converted:", min_value=0.0, value=100.0)
14
  from_currency = st.selectbox("From currency:", currencies)
15
  to_currency = st.selectbox("To currency:", currencies)
16
 
 
10
  currencies = get_currencies()
11
 
12
  # Input elements
13
+ amount = st.number_input("Enter the amount to be converted:", min_value=0.0, value=0.0)
14
  from_currency = st.selectbox("From currency:", currencies)
15
  to_currency = st.selectbox("To currency:", currencies)
16