Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
|
| 3 |
st.set_page_config(page_title="🧮 Simple Calculator App", page_icon="🧮")
|
| 4 |
st.title("🧮 Simple Calculator App")
|
|
@@ -62,3 +62,4 @@ if st.button("Calculate"):
|
|
| 62 |
elif operation == "Minimum":
|
| 63 |
result = min(num1, num2)
|
| 64 |
st.success(f"The minimum of the two numbers is: {result}")
|
|
|
|
|
|
| 1 |
+
import streamlit as st # Make sure this is at the very top
|
| 2 |
|
| 3 |
st.set_page_config(page_title="🧮 Simple Calculator App", page_icon="🧮")
|
| 4 |
st.title("🧮 Simple Calculator App")
|
|
|
|
| 62 |
elif operation == "Minimum":
|
| 63 |
result = min(num1, num2)
|
| 64 |
st.success(f"The minimum of the two numbers is: {result}")
|
| 65 |
+
|