CoolFace
Apppublic

sangamai/Stringconcat

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
app.py22 linesDownload Raw Back to root
1 2 3 4import streamlit as st5 6# streamlit run 2_Hello.py7 8st.title('String Operations')9 10firstName = st.text_input('Enter your first name: ')11lastName = st.text_input('Enter your second name: ')12 13def display_fullname(firstName, lastName):14    fullname = f"{firstName} {lastName}"15 16    st.write(f"Full name: {fullname}")17 18if st.button("Submit"):19        if firstName and lastName:20            display_fullname(firstName, lastName)21        else:22            st.write("Please enter both first name and last name.")