File size: 344 Bytes
4e7fac7
 
 
 
 
06e4c04
4e7fac7
 
bb1f9d6
4e7fac7
 
 
 
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}.")

if __name__ == "__main__":
    main()