Sample / app.py
CristopherWVSU's picture
Sync with Remote
1434547
raw
history blame contribute delete
252 Bytes
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()