davidlee1102
First commit
6360f05
raw history blame
No virus
185 Bytes
import streamlit as st
name = st.text_input("Enter your sentence here")
if(st.button('Submit')):
result = name.title()
result_check = "Thanh cong"
st.success(result_check)