RanaZaeem12 commited on
Commit
3c20eed
·
verified ·
1 Parent(s): 4aa4403

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,4 +1,4 @@
1
- # app.pyimport streamlit as st
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
+