Spaces:
No application file
No application file
File size: 294 Bytes
c97b125 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import streamlit as st
st.title("Hello World!")
st.write("This is my first Streamlit app on Hugging Face Spaces.")
name = st.text_input("Enter your name:")
age = st.slider("Select your age:", 0, 100, 25)
if st.button("Submit"):
st.write(f"Hello {name}, you are {age} years old!")
|