File size: 154 Bytes
933f15b
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st

st.title("Hello World")

text = st.text_input("What's your name")

if text.strip() != "":
    st.write(f"Hello, {text.strip()}!")