File size: 258 Bytes
f12635c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# Example 1 : Text Input and Button
st.title("Interactive App : User Input")

# Text Input Feild
name = st.text_input("Enter your name:")

# Create Button
if st.button("Greet"):
    st.write(f"Hello, {name}! Welcome to your first interactive Streamlit app.")