MySimpleApp2.0 / app.py
K0RB1's picture
i added space
d8db5f8
import streamlit as st
def main():
st.title("Mood Checker")
name = st.text_input("What's your name?")
mood = st.selectbox("How are you feeling today?", ("Happy", "Sad", "Angry", "Excited", "Bored"))
if st.button("submit"):
st.write(f"Hello, {name}! You're feeling {mood} Today.")
if __name__ == "__main__":
main()