Hemasagar's picture
Update app.py
031b998 verified
raw
history blame
330 Bytes
import streamlit as st
# Set the app title
st.title('My First Streamlit App')
# Add a welcome message
st.write('Welcome to my Streamlit app!')
# Create a text input
widgetuser_input = st.text_input('Enter a custom message:', 'Hello, Streamlit!')
# Display the customized message
st.write('Customized Message:', user_input)