write a simple app
To upload files, please first save the app
import streamlit as st
st.title("Simple Streamlit App")
st.write("Welcome to my simple Streamlit app!")
name = st.text_input("What's your name?")
if name:
st.write(f"Hello, {name}! 👋")
number = st.slider("Pick a number", 0, 100, 50)
st.write(f"You selected: {number}")
if st.button("Click me!"):
st.balloons()
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?