File size: 345 Bytes
2123f13
 
 
 
 
6a0d00c
2123f13
 
 
d8db5f8
2123f13
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()