Spaces:
Runtime error
Runtime error
bikas
commited on
Commit
•
42e355f
1
Parent(s):
1f6c124
Currency Converter 2nd Deployment
Browse files
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=
|
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 |
|