File size: 252 Bytes
1434547
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st

def main():
    st.title("My First Streamlit Program!")
    name = st.text_input("Enter your Name:")

    if st.button("Say hello"):
        st.write(f"Hello {name}, Welcome to Streamlit!")

if __name__ == "__main__":
    main()